-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
46 lines (40 loc) · 1.43 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
import os
from setuptools import setup, find_packages
install_requires = open("requirements.txt").read().splitlines()
__version__ = "0.4.3"
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ""
setup(
name="python-qbittorrent",
description="Python wrapper for qBittorrent >4.1.x",
version=__version__,
long_description=read("README.rst"),
license="The MIT License",
platforms=["OS Independent"],
keywords="torrent, qBittorent, API, wrapper",
author="Vikas Yadav",
author_email="[email protected]",
url="https://github.com/v1k45/python-qbittorrent",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"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",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
],
)