mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
Updated setup with new name and metadata
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
|
build
|
||||||
7
CHANGES.rst
Normal file
7
CHANGES.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Changelog
|
||||||
|
=========
|
||||||
|
|
||||||
|
Version 0.5.0 -- 2013/05/28
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
* Created ``num2words`` based on the old ``pynum2word`` project.
|
||||||
37
setup.py
37
setup.py
@@ -1,10 +1,29 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(name='pynum2word',
|
|
||||||
version=0.43,
|
CLASSIFIERS = [
|
||||||
description='Modules to convert numbers to words. Easily extensible.',
|
'Development Status :: 5 - Production/Stable',
|
||||||
author='Taro Ogawa <tso at users sourceforge net>',
|
'Intended Audience :: Developers',
|
||||||
author_email='tos@users.sourceforge.net',
|
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
|
||||||
url='http://pypi.python.org/pypi/PyNum2Word/',
|
'Programming Language :: Python :: 2.7',
|
||||||
packages=['pynum2word'],
|
'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 <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(),
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user