-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (23 loc) · 610 Bytes
/
setup.cfg
File metadata and controls
29 lines (23 loc) · 610 Bytes
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
[metadata]
license_files = license.txt
long_description = file: README.md
long_description_content_type = text/markdown
[mypy]
python_version = 3.9
check_untyped_defs = True
follow_imports = silent
no_implicit_reexport = True
no_implicit_optional = True
strict_optional = True
strict_equality = True
ignore_missing_imports = True
ignore_errors = False
disallow_any_generics = False
disallow_untyped_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True