mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
11 lines
368 B
Python
11 lines
368 B
Python
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
setup(name='pynum2word',
|
||
|
|
version=0.4,
|
||
|
|
description='Modules to convert numbers to words. Easily extensible.',
|
||
|
|
author='Taro Ogawa <tso at users sourceforge net>',
|
||
|
|
author_email='tos@users.sourceforge.net',
|
||
|
|
url='http://pypi.python.org/pypi/PyNum2Word/',
|
||
|
|
packages=['distutils', 'distutils.command'],
|
||
|
|
)
|