forked from andychisholm/nel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.24 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
45
46
47
48
49
50
51
from setuptools import setup, find_packages
__version__ = '0.4.0'
__pkg_name__ = 'nel'
setup(
name = __pkg_name__,
version = __version__,
description = 'Named entity linker',
author='Andrew Chisholm',
packages = find_packages(),
license = 'MIT',
url = 'https://github.com/wikilinks/nel',
entry_points = {
'console_scripts': [
'nel = nel.__main__:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
install_requires = [
"Flask",
"Jinja2",
"MarkupSafe",
"Werkzeug",
"argparse",
"functools32",
"itsdangerous",
"msgpack-python",
"numpy",
"python-crfsuite",
"pymongo",
"python-dateutil",
"redis",
"scikit-learn",
"scipy",
"six",
"wsgiref",
"ujson",
"progressbar2",
"spacy"
],
test_suite = __pkg_name__ + '.test'
)