forked from BaderLab/saber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (52 loc) · 1.87 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
52
53
54
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="saber",
version="0.1.0-alpha",
author="John Giorgi",
author_email="[email protected]",
license="MIT",
description="Saber: Sequence Annotator for Biomedical Entities and Relations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BaderLab/saber",
python_requires='>=3.5',
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
keywords=[
'Natural Language Processing',
'Named Entity Recognition',
],
install_requires=[
'scikit-learn>=0.20.1',
'tensorflow>=1.12.0',
'Flask>=1.0.2',
'waitress>=1.1.0',
'keras==2.2.4',
'PTable>=0.9.2',
'spacy>=2.0.11, <=2.3.4',
'gensim>=3.4.0',
'nltk>=3.3',
'googledrivedownloader>=0.3',
'google-compute-engine',
'msgpack==0.5.6',
'keras-contrib @ git+https://www.github.com/keras-team/keras-contrib.git',
'en-coref-md @ https://github.com/huggingface/neuralcoref-models/releases/download/en_coref-4.0.0/en_coref-4.0.0.tar.gz',
],
include_package_data=True,
# allows us to install + run tests with `python setup.py test`
# https://docs.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner
setup_requires=['pytest-runner'],
tests_require=['pytest'],
zip_safe=False,
)