forked from rmartin16/qbittorrent-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
80 lines (76 loc) · 1.75 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
[metadata]
name = qbittorrent-api
version = 2022.5.32
url = https://github.com/rmartin16/qbittorrent-api
author = Russell Martin
author_email = [email protected]
maintainer = Russell Martin
maintainer_email = [email protected]
classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
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
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
install_requires =
enum34; python_version < "3"
requests >= 2.16.0
six
urllib3 >= 1.24.2
[options.extras_require]
dev =
black
build
codecov
coveralls
flake8
pre-commit
pytest
pytest-cov
sphinx
sphinx_glpi_theme
[bdist_wheel]
universal = 1
[flake8]
exclude=\
venv*/*,\
local/*,\
docs/*,\
build/*,\
.eggs/*,\
.tox/*
max-line-length = 127
ignore =
# line break before binary operator
W503
per-file-ignores =
# Found commented out code
qbittorrentapi/_attrdict.py: E800