-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (46 loc) · 862 Bytes
/
setup.cfg
File metadata and controls
51 lines (46 loc) · 862 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
[metadata]
# Most metadata lives in pyproject.toml (PEP 621). This file keeps
# tooling configuration (flake8, mypy, coverage) for ecosystems that
# don't read pyproject.toml yet.
name = proeval
version = 0.1.0
[options]
zip_safe = False
[flake8]
max-line-length = 100
extend-ignore =
E203,
E501,
W503
exclude =
.git,
__pycache__,
build,
dist,
.eggs,
*.egg-info,
data,
experiment
[mypy]
python_version = 3.9
ignore_missing_imports = True
warn_unused_ignores = True
no_implicit_optional = True
check_untyped_defs = True
exclude = (?x)(
^build/
| ^dist/
| ^data/
| ^experiment/
)
[coverage:run]
source = proeval
omit =
proeval/*/__init__.py
*/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING: