-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (27 loc) · 873 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = ["shutup",
"numpy",
"pandas",
"bs4",
"metapub",
"scidownl",
"pdfminer3",
"pubmed_parser"]
setuptools.setup(
name="pubmedflow",
version="0.0.2",
author="Aditya Ura",
author_email="[email protected]",
description="Data Collection from pubmed made easy",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
url="https://github.com/nfflow/pubmedflow",
install_requires=install_requires,
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True,
extras_require={"qa": ["nfmodelapis"]},
)