2017-10-30 14:06:46 -04:00
|
|
|
from setuptools import find_packages, setup
|
2013-05-28 12:53:16 -04:00
|
|
|
|
|
|
|
|
CLASSIFIERS = [
|
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
|
'Intended Audience :: Developers',
|
2017-10-30 14:06:46 -04:00
|
|
|
'License :: OSI Approved :: GNU Library or Lesser General Public License '
|
|
|
|
|
'(LGPL)',
|
2013-05-28 12:53:16 -04:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-12-17 15:42:39 -05:00
|
|
|
'Programming Language :: Python :: 3',
|
2013-05-28 12:53:16 -04:00
|
|
|
'Topic :: Software Development :: Internationalization',
|
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
|
'Topic :: Software Development :: Localization',
|
|
|
|
|
'Topic :: Text Processing :: Linguistic',
|
|
|
|
|
]
|
|
|
|
|
|
2017-10-30 14:06:46 -04:00
|
|
|
LONG_DESC = open('README.rst', 'rt').read() + '\n\n' + \
|
|
|
|
|
open('CHANGES.rst', 'rt').read()
|
2013-05-28 12:53:16 -04:00
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='num2words',
|
2017-07-02 19:39:09 -04:00
|
|
|
version='0.5.5',
|
2013-05-28 12:53:16 -04:00
|
|
|
description='Modules to convert numbers to words. Easily extensible.',
|
2014-03-14 10:57:06 -04:00
|
|
|
long_description=LONG_DESC,
|
2013-05-28 12:53:16 -04:00
|
|
|
license='LGPL',
|
|
|
|
|
author='Taro Ogawa <tso at users sourceforge net>',
|
|
|
|
|
author_email='tos@users.sourceforge.net',
|
|
|
|
|
maintainer='Savoir-faire Linux inc.',
|
|
|
|
|
maintainer_email='virgil.dupras@savoirfairelinux.com',
|
2017-10-30 14:06:46 -04:00
|
|
|
keywords=' number word numbers words convert conversion i18n '
|
|
|
|
|
'localisation localization internationalisation '
|
|
|
|
|
'internationalization',
|
2013-05-28 12:53:16 -04:00
|
|
|
url='https://github.com/savoirfairelinux/num2words',
|
2015-06-09 12:06:46 -04:00
|
|
|
packages=find_packages(exclude=['tests']),
|
2014-03-14 10:25:25 -04:00
|
|
|
test_suite='tests',
|
2017-04-12 21:20:37 +02:00
|
|
|
classifiers=CLASSIFIERS,
|
2013-05-28 12:53:16 -04:00
|
|
|
)
|