2013-05-28 12:53:16 -04:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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',
|
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',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
LONG_DESC = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst', 'rt').read()
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='num2words',
|
2016-10-18 09:46:11 -04:00
|
|
|
version='0.5.4',
|
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',
|
|
|
|
|
keywords=' number word numbers words convert conversion i18n localisation localization internationalisation internationalization',
|
|
|
|
|
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',
|
2013-12-13 14:37:47 -05:00
|
|
|
use_2to3=True,
|
2013-05-28 12:53:16 -04:00
|
|
|
)
|