-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.cfg
111 lines (99 loc) · 2.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[bumpversion]
current_version = 0.41.0
commit = True
tag = False
tag_name = {new_version}
[bumpversion:file:async_upnp_client/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[metadata]
name = async_upnp_client
version = attr: async_upnp_client.__version__
description = Async UPnP Client
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/StevenLooman/async_upnp_client
project_urls =
GitHub: repo = https://github.com/StevenLooman/async_upnp_client
author = Steven Looman
author_email = [email protected]
license = Apache 2
license_file = LICENSE.md
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Framework :: AsyncIO
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
keywords =
ssdp
Simple Service Discovery Protocol
upnp
Universal Plug and Play
[options]
python_requires = >=3.9
install_requires =
voluptuous >= 0.15.2
aiohttp >3.9.0, <4.0
async-timeout >=3.0, <5.0
python-didl-lite ~= 1.4.0
defusedxml >= 0.6.0
tests_require =
pytest ~= 8.3.3
pytest-asyncio ~= 0.24.0
pytest-aiohttp ~= 1.0.5
pytest-cov ~= 5.0.0
coverage ~= 7.6.1
asyncmock ~= 0.4.2
packages =
async_upnp_client
async_upnp_client.profiles
[options.entry_points]
console_scripts =
upnp-client = async_upnp_client.cli:main
[options.package_data]
async-upnp-client = py.typed
[bdist_wheel]
python-tag = py3
[flake8]
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
max-line-length = 119
max-complexity = 25
ignore =
E501,
W503,
E203,
D202,
W504
noqa-require-code = True
[tool:pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
[mypy]
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[codespell]
ignore-words-list = wan
[pylint.SIMILARITIES]
min-similarity-lines = 8
[coverage:run]
source = async_upnp_client
omit =
async_upnp_client/aiohttp.py
async_upnp_client/cli.py