-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (34 loc) · 1.03 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
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from subprocess import check_call
setup(
name="dere",
version="0.1",
description="Declarative Relation Extraction",
url="http://www.ims.uni-stuttgart.de/forschung/ressourcen/werkzeuge/DeRE.en.html",
author="Heike Adel, Laura Bostan, Sean Papay, Roman Klinger, Sebastian Pad\u00f3",
author_email="[email protected]",
license="Apache 2",
python_requires=">= 3.7",
packages=find_packages(),
install_requires=[
"mypy == 0.620",
"mypy-extensions == 0.4.1",
"click == 6.7",
"numpy >= 1.14.5",
"scipy == 1.1.0",
"scikit-learn == 0.19.2",
"sklearn-crfsuite == 0.3.6",
"nltk == 3.3",
"networkx >= 2.2",
"spacy >= 2.0.12",
],
entry_points={
"console_scripts": [
"dere = dere.__main__:cli"
]
},
zip_safe=False,
include_package_data=True,
)