-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.32 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.32 KB
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='pynsett',
version='0.1.8',
url='http://github.com/fractalego/pynsett',
author='Alberto Cetoli',
author_email='alberto@nlulite.com',
description="A programmable relation extractor",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['pynsett',
'pynsett.auxiliary',
'pynsett.discourse',
'pynsett.drt',
'pynsett.examples',
'pynsett.extractor',
'pynsett.inference',
'pynsett.install',
'pynsett.knowledge',
'pynsett.metric',
'pynsett.nl',
'pynsett.tests',
'pynsett.writer',
'pynsett.server',
],
install_requires=[
'spacy==2.1.3',
'nltk==3.2.1',
'rdflib==4.2.2',
'yappi==1.0',
'gensim==3.7.2',
'parvusdb==0.0.26',
'nose==1.3.7',
'allennlp==0.8.3',
'flask==1.0.2',
'flask-cors',
],
classifiers=[
'License :: OSI Approved :: MIT License',
],
include_package_data=True,
zip_safe=False)