forked from neuml/cord19q
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.63 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
# pylint: disable = C0111
from setuptools import find_packages, setup
with open("README.md", "r") as f:
DESCRIPTION = f.read()
setup(name="cord19q",
version="1.0.0",
author="NeuML",
description="CORD-19 Analysis",
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/neuml/cord19q",
project_urls={
"Documentation": "https://github.com/neuml/cord19q",
"Issue Tracker": "https://github.com/neuml/cord19q/issues",
"Source Code": "https://github.com/neuml/cord19q",
},
license="MIT License: http://opensource.org/licenses/MIT",
packages=find_packages(where="src/python/"),
package_dir={"": "src/python/"},
keywords="python search embedding machine-learning",
python_requires=">=3.5",
entry_points={
"console_scripts": [
"cord19q = cord19q.shell:main",
],
},
install_requires=[
"faiss-gpu>=1.6.1",
"fasttext>=0.9.1",
"html2text>=2019.9.26",
"mdv>=1.7.4",
"networkx>=2.4",
"nltk>=3.4.5",
"numpy>=1.17.4",
"pymagnitude>=0.1.120",
"regex>=2019.12.9",
"scikit-learn>=0.22.1",
"scipy>=1.4.1",
"spacy>=2.2.3",
"tqdm>=4.40.2"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities"
])