X-Git-Url: https://git.korewanetadesu.com/?p=python-collate.git;a=blobdiff_plain;f=setup.py;h=99a13afe3e6798fb26aceabfb63f119d2ba2a1a4;hp=cf14037525b120887491d937cd64406f632ea20c;hb=e8b221311bf60883d3f14083bab63fd947d34509;hpb=c02c5c3c54d35e7d5836adf54aadac1f79906f05 diff --git a/setup.py b/setup.py index cf14037..99a13af 100755 --- a/setup.py +++ b/setup.py @@ -11,15 +11,25 @@ else: libraries = ['icui18n', 'icuuc', 'icudata'] setup(name='collate', - version='0', + version='0.1', author="Joe Wreschnig", author_email="joe.wreschnig@gmail.com", description="Python text collation", license="MIT / ZPL 2.1", ext_modules=[ - Extension('collate.icu._ucol', - ['collate/icu/_ucol.pyx'], + Extension('collate.icu._icu', + ['collate/icu/_icu.pyx'], libraries=libraries)], cmdclass=dict(build_ext=build_ext), - packages=["collate", "collate.icu", "collate.uca", "collate.syslocale"], + packages=["collate", "collate.icu"], + long_description="""\ +This module provides tools to sort strings in a 'human-expected' +order. Because human expectations are fuzzy and often +self-contradictory, the sort order is not guaranteed to be stable +between versions of this module (rather the opposite - the primary +reason to update it will probably be changed sort results). If +available, this module uses the ICU localization library. Otherwise, +it uses the system's locale database (and produces significantly worse +results). +""" )