-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
executable file
·37 lines (34 loc) · 1.28 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
from setuptools import setup, find_packages
readme = open('README', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name="scihub2pdf",
version="0.4.2",
packages=find_packages(exclude=["build", ]),
scripts=["scihub2pdf/bin/scihub2pdf"],
long_description=README_TEXT,
install_requires=["bibtexparser",
"title2bib",
"arxivcheck",
"future",
"six",
"Pillow",
"requests",
"selenium",
"lxml"],
include_package_data=True,
license="AGPLv3",
description="Downloads pdfs via a DOI number(or arxivId), article title or a bibtex file, sci-hub",
author="Bruno Messias",
author_email="[email protected]",
download_url="https://github.com/bibcure/scihub2pdf/archive/0.4.2.tar.gz",
keywords=["bibtex", "sci-hub", "libgen", "doi", "science", "scientific-journals"],
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: LaTeX",
],
url="https://github.com/bibcure/scihub2pdf"
)