-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
37 lines (28 loc) · 855 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
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from distutils.core import setup
URL = 'https://github.com/FEE1DE4D/KickassAPI'
setup(
name='KickassAPI',
version='1.0.4',
py_modules=['KickassAPI'],
author='fm4d',
author_email='[email protected]',
url=URL,
description='Python API for kat.cr (formerly kickass.to)',
license='GPLv2+',
long_description="Documentation can be found here " + URL,
install_requires=[
'setuptools',
'pyquery',
'requests',
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 or later ("
"GPLv2+)",
"Programming Language :: Python :: 2.7",
"Development Status :: 3 - Alpha",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)