-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 1.15 KB
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
#!/usr/bin/env python
from setuptools import setup
if __name__ == '__main__':
setup(
name = 'qbittorrent',
version = '0.1.6',
description = 'Python wrapper for the QBittorrent web api v3.1.x',
long_description = 'Python wrapper for QBittorrent web api v3.1.x',
author = "Mookfist",
author_email = "mookfist@gmail.com",
license = 'Apache2',
url = 'https://github.com/mookfist/python-qbittorent',
scripts = [],
packages = ['qbittorrent'],
package_dir = {'qbittorrent': 'qbittorrent'},
package_data = {'': ['README.md','LICENSE']},
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
],
install_requires = [ "requests" ],
zip_safe=True
)