-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·44 lines (40 loc) · 1.36 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
from setuptools import setup, find_packages
exec(open("academictorrents/version.py").read())
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="academictorrents",
version=__version__,
description="Academic Torrents Python API",
author="Martin Weiss, Alexis Gallepe, Jonathan Nogueira, Joseph Paul Cohen",
author_email="[email protected]",
data_files=[("", ["LICENSE"])],
url="https://github.com/AcademicTorrents/at-python",
classifiers=(
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
),
license=license,
packages=find_packages(exclude=("tests", "docs")),
install_requires=[
"bencode.py==2.0.0",
"bitstring==3.1.5",
"PyPubSub==3.3.0",
"requests>=2.19.0",
"future==0.16.0",
"tqdm",
],
entry_points={
"console_scripts": ["at-get = academictorrents:cli"],
},
)