-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 1.21 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
import setuptools
description = "Written in python, for checking reference lists in systematic reviews and literature reviews, helps with reference list searching both backward & forward by extracting references and creating search queries, ranks articles by relevance to improve screening efficiency, downloads full-text pdf of research articles in batch."
with open("README.md","r") as readme:
long_description = readme.read()
setuptools.setup(
name="refchaser",
version='0.0.3',
authpr='Dingqi Zhang',
author_email='[email protected]',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DQ-Zhang/refchaser.git',
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows"
],
python_requires='>=3'
)