-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (45 loc) · 1017 Bytes
/
setup.cfg
File metadata and controls
52 lines (45 loc) · 1017 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[metadata]
description-file = README.md
[tool:pytest]
testpaths = tests
addopts = -v --cov=weekly --cov-report=term-missing
python_files = test_*.py
[coverage:run]
source = weekly
omit =
*/tests/*
*/__init__.py
[coverage:report]
show_missing = True
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[flake8]
max-line-length = 88
extend-ignore = E203, W503
exclude = .git,__pycache__,.venv,venv,build,dist
per-file-ignores =
# Allow * imports in __init__.py
__init__.py: F401,F403
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = 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_no_return = True
warn_unreachable = True
strict_equality = True
[egg_info]
tag_build =
tag_date = 0