-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (24 loc) · 841 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='getarticle',
description="A package based on SciHub and Google \
Scholar that can download articles given DOI, \
website address or keywords.",
long_description=long_description,
long_description_content_type="text/markdown",
version='0.1.0',
url='https://github.com/HTian1997/getarticle',
author='Hao Tian',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
"requests", \
'appscript; platform_system=="Darwin"',\
"argparse"],
entry_points={'console_scripts':\
'getarticle = getarticle.cli:entry_point'},
zip_safe=False
)