-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.36 KB
/
setup.py
File metadata and controls
49 lines (48 loc) · 1.36 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
46
47
48
49
from setuptools import find_packages, setup
setup(
name="nlm-ingestor",
version="0.1.7",
description="Parsers and ingestors for different file types and formats",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/nlmatics/nlm-ingestor",
author="Ambika Sukla",
author_email="ambika.sukla@nlmatics.com",
license="Apache License 2.0",
packages=find_packages(),
include_package_data=True,
package_data={
"": [
"ingestor_utils/*.txt",
]
},
install_requires=[
"flask",
"flask_restful",
"flask_jsonpify",
"gunicorn",
"werkzeug",
"tika",
"bs4",
"nltk",
"python-magic",
"numpy",
"tqdm",
"symspellpy>=6.7.0",
"pandas>=1.2.4",
"mistune==2.0.3",
"lxml==4.9.1",
"unidecode",
"nlm-utils",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
],
)