mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
* Activate flake8, isort and coveralls in the configuration of tox * Update code to respect PEP8 * Fix bug in the lang_IT for python 3 * Update the README to include the new converters.
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
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',
|
|
'Programming Language :: Python :: 3',
|
|
'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.5',
|
|
description='Modules to convert numbers to words. Easily extensible.',
|
|
long_description=LONG_DESC,
|
|
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',
|
|
packages=find_packages(exclude=['tests']),
|
|
test_suite='tests',
|
|
classifiers=CLASSIFIERS,
|
|
)
|