-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 882 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="nlpipe",
version="0.30",
description="Simple NLP Pipelinining using Elastic and Celery",
author="Wouter van Atteveldt",
author_email="[email protected]",
packages=["nlpipe", "nlpipe.scripts", "nlpipe.modules"],
keywords = ["NLP", "pipelining"],
download_url="https://github.com/amcat/nlpipe/tarball/0.1",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing",
],
install_requires=[
"celery>=3.0.0",
"elasticsearch",
"KafNafParserPy",
"pynlpl",
"corenlp-xml>=1.0.3",
"unidecode",
],
dependency_links=[
"https://github.com/vanatteveldt/corenlp-xml-lib/tarball/master#egg=corenlp-xml-1.0.3"
]
)