-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 924 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="nlpipe",
version="0.58",
description="Simple NLP Pipelinining based on a file system",
authors=["Wouter van Atteveldt", "Farzam Fanitabasi"],
author_email="[email protected]",
packages=["nlpipe", "nlpipe.Clients", "nlpipe.Tools", "nlpipe.Workers"],
include_package_data=True,
zip_safe=False,
keywords=["NLP", "pipelining"],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing",
],
install_requires=[
"Flask",
"flask-cors",
"requests",
"pynlpl",
"corenlp_xml>=1.0.4",
"amcatclient>=3.4.9",
"KafNafParserPy",
"PyJWT",
"pytest",
"pytest-flask",
"peewee",
"spacy",
"spacy-udpipe",
"gensim"
]
)