-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.cfg
50 lines (43 loc) · 991 Bytes
/
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
[bumpversion]
current_version = 0.44.0
commit = True
tag = False
tag_name = {new_version}
[bumpversion:file:async_upnp_client/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[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