-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.41 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
#This file is part of numword. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
from distutils.core import setup
import numword
setup(name='numword',
version=numword.__version__,
author='B2CK',
author_email='[email protected]',
url="https://github.com/sayplastic/numword",
description="Python modules to convert numbers to words. Easily extensible.",
download_url="http://code.google.com/p/numword/downloads/",
packages=['numword'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Natural Language :: French',
'Natural Language :: German',
'Natural Language :: Spanish',
'Natural Language :: Russian',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Internationalization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Localization',
'Topic :: Text Processing :: Linguistic',
],
license='LGPL',
install_requires=['pymorphy']
)