-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (41 loc) · 950 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages
from setuptools import setup
NAME = "discovery_engine_lite"
VERSION = "0.1.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"fastapi",
"nltk",
"numpy",
"pydantic",
"pandas",
"requests",
"scikit-learn",
"scipy",
"uvicorn",
"xxhash",
"elasticsearch>=7.0.0,<8.0.0",
"networkx==2.5.1",
"pyahocorasick",
"tiktoken",
]
setup(
name=NAME,
version=VERSION,
description="NLM Discovery Engine Lite",
author_email="[email protected]",
url="nlmatics.com",
keywords=["NLM Discovery Engine Lite"],
install_requires=REQUIRES,
packages=find_packages(),
package_dir={"discovery_engine_lite": ""},
include_package_data=True,
long_description="""\
API specification for discovery_engine_lite # noqa: E501
""",
)