forked from python-zeroconf/python-zeroconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (30 loc) · 735 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
[bumpversion]
current_version = 0.35.1
commit = True
tag = True
tag_name = {new_version}
[bumpversion:file:zeroconf/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[tool:pytest]
testpaths = tests
[flake8]
show-source = 1
application-import-names = zeroconf
max-line-length = 110
ignore = E203,W503,N818
[mypy]
ignore_missing_imports = true
follow_imports = skip
check_untyped_defs = true
no_implicit_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
warn_return_any = true
disallow_untyped_calls = false
disallow_untyped_defs = true
[mypy-zeroconf.test]
disallow_untyped_defs = false