-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.58 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
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
try:
import distribute_setup
# User may not have setuptools installed on their machines.
# This script will automatically install the right version from PyPI.
distribute_setup.use_setuptools()
except ImportError:
pass
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='numparser',
packages=['numparser'],
description='Python library for parsing numbers from strings.',
long_description='''Python library for parsing numbers from strings.
Originally meant to be used to process results from Named Entity Recognizer.
For more description visit https://github.com/sadovnychyi/numparser''',
version='0.0.2',
url='https://github.com/sadovnychyi/numparser',
author='Dmitry Sadovnychyi',
author_email='[email protected]',
license='GNU General Public License v2.0',
keywords=['numbers', 'parser', 'num', 'digits', 'digit'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
"Topic :: Software Development :: Libraries :: Python Modules",
'Topic :: Text Processing :: Linguistic',
]
)