forked from gdraheim/zziplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (53 loc) · 1.52 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
# __version__
[metadata]
name = zziplib-tools
version = 0.13.78
license = LGPL
license_files =
COPYING.LIB
author = Guido U. Draheim
author-email = Guido.Draheim@gmx.de
home-page = https://github.com/gdraheim/zziplib
description = Test tools and man page generators for zziplib
long-description = file: README.MD
long-description-content-type = text/markdown
requires-dist = setuptools
[options]
include_package_data=True
scripts =
testbuilds.py
test/zziptests.py
docs/toolstests.py
[options.data_files]
share/zziplib =
COPYING.LIB
README.MD
[bdist_wheel]
universal = 1
[pycodestyle]
max-line-length = 127
ignore = E301,E302,E305,E306,E701
# E301 Add missing blank line. (expected 1 blank line, found 0)
# E302 Add missing 2 blank lines. (expected 2 blank lines, found 0)
# E305 - (expected 2 blank lines after end of function or class)
# E306 - (expected 1 blank line before a nested definition)
# E701 Put colon-separated compound statement on separate lines. (multiple statements on one line (colon))
[mypy]
## strict = true # not allowed in setup.cfg
unused_configs = true
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
## extra:
disallow_any_unimported = true
# disallow_any_expr = true
disallow_any_decorated = true
#? disallow_any_explicit = true