forked from rmartin16/qbittorrent-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
86 lines (81 loc) · 2.29 KB
/
setup.cfg
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[metadata]
name = qbittorrent-api
version = 2023.3.44
author = Russell Martin
author_email = rmartin16@gmail.com
maintainer = Russell Martin
maintainer_email = rmartin16@gmail.com
url = https://github.com/rmartin16/qbittorrent-api
project_urls =
Documentation = https://qbittorrent-api.readthedocs.io/
API Reference = https://qbittorrent-api.readthedocs.io/en/latest/api.html
Source = https://github.com/rmartin16/qbittorrent-api
classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.5
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Topic :: Communications :: File Sharing
Topic :: Utilities
license = MIT
license_files = LICENSE
description = Python client for qBittorrent v4.1+ Web API.
long_description = file: README.md, CHANGELOG.md, LICENSE
long_description_content_type = text/markdown; charset=UTF-8
keywords =
python
qbittorrent
api
client
torrent
torrents
webui
web
platforms = any
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
= src
install_requires =
backports.functools-lru-cache; python_version < "3.3"
enum34; python_version < "3"
requests >= 2.16.0
six
urllib3 >= 1.24.2
# required for pkg_resources.parse_version
setuptools
[options.package_data]
qbittorrentapi =
py.typed
*.pyi
[options.extras_require]
dev =
black; python_version >= "3.7"
build
coverage[toml]
furo; python_version >= "3.7"
mock; python_version < "3"
mypy; python_version >= "3.7" and platform_python_implementation != "PyPy"
pre-commit
pytest
sphinx; python_version >= "3.7"
sphinx-copybutton; python_version >= "3.7"
types-requests
types-six
[options.packages.find]
where = src
[bdist_wheel]
universal = 1