diff --git a/.gitignore b/.gitignore index 0d20b64..0b37ad5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +build \ No newline at end of file diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000..f0a3ab0 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,7 @@ +Changelog +========= + +Version 0.5.0 -- 2013/05/28 +--------------------------- + +* Created ``num2words`` based on the old ``pynum2word`` project. diff --git a/setup.py b/setup.py index 4e1a51f..f70dff7 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,29 @@ -from setuptools import setup +from setuptools import setup, find_packages -setup(name='pynum2word', - version=0.43, - description='Modules to convert numbers to words. Easily extensible.', - author='Taro Ogawa ', - author_email='tos@users.sourceforge.net', - url='http://pypi.python.org/pypi/PyNum2Word/', - packages=['pynum2word'], - ) + +CLASSIFIERS = [ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Internationalization', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Software Development :: Localization', + 'Topic :: Text Processing :: Linguistic', +] + +LONG_DESC = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst', 'rt').read() + +setup( + name='num2words', + version='0.5.0', + description='Modules to convert numbers to words. Easily extensible.', + license='LGPL', + author='Taro Ogawa ', + author_email='tos@users.sourceforge.net', + maintainer='Savoir-faire Linux inc.', + maintainer_email='virgil.dupras@savoirfairelinux.com', + keywords=' number word numbers words convert conversion i18n localisation localization internationalisation internationalization', + url='https://github.com/savoirfairelinux/num2words', + packages=find_packages(), +)