X-Git-Url: https://git.korewanetadesu.com/?p=python-collate.git;a=blobdiff_plain;f=setup.py;h=e47d62017733734896c7c3d77eb5b73660128e90;hp=111cfaca5242cd8a068c13f447a5887ff74b51c3;hb=9cd8577174009d6b61bf4d976b67d8171aef9e5a;hpb=f73c4c6cd3ed326c5735ab33a6896697227d07e3 diff --git a/setup.py b/setup.py index 111cfac..e47d620 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ else: libraries = ['icui18n', 'icuuc', 'icudata'] setup(name='collate', - version='0', + version='0.2', author="Joe Wreschnig", author_email="joe.wreschnig@gmail.com", description="Python text collation", @@ -22,4 +22,14 @@ setup(name='collate', libraries=libraries)], cmdclass=dict(build_ext=build_ext), 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). +""" )