-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
64 lines (62 loc) · 2.04 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'PyPaperBot',
packages = setuptools.find_packages(),
version = '1.4.0',
license='MIT',
description = 'PyPaperBot is a Python tool for downloading scientific papers using Google Scholar, Crossref, and SciHub.',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Vito Ferrulli',
author_email = '[email protected]',
url = 'https://github.com/ferru97/PyPaperBot',
download_url = 'https://github.com/ferru97/PyPaperBot/archive/v1.4.0.tar.gz',
keywords = ['download-papers','google-scholar', 'scihub', 'scholar', 'crossref', 'papers'],
install_requires=[
'astroid>=2.4.2,<=2.5',
'beautifulsoup4>=4.9.1',
'bibtexparser>=1.2.0',
'certifi>=2020.6.20',
'chardet>=3.0.4',
'colorama>=0.4.3',
'crossref-commons>=0.0.7',
'future>=0.18.2',
'HTMLParser>=0.0.2',
'idna>=2.10,<3',
'isort>=5.4.2',
'lazy-object-proxy>=1.4.3',
'mccabe>=0.6.1',
'numpy',
'pandas',
'pyChainedProxy>=1.1',
'pylint>=2.6.0',
'pyparsing>=2.4.7',
'python-dateutil>=2.8.1',
'pytz>=2020.1',
'ratelimit>=2.2.1',
'requests>=2.24.0',
'six>=1.15.0',
'soupsieve>=2.0.1',
'toml>=0.10.1',
'urllib3>=1.25.10',
'wrapt>=1.12.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': ["PyPaperBot=PyPaperBot.__main__:main"],
},
)