-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
69 lines (62 loc) · 1.04 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
60
61
62
63
64
65
66
67
68
69
[metadata]
description-file = README.md
[flake8]
exclude =
__pycache__
.git
.github
.ipynb_checkpoints
.pytest_cache
.vscode
dockerfiles
docs
examples
max-line-length = 99
max-complexity = 15
docstring-convention = google
[yapf]
based_on_style = pep8
column_limit = 99
spaces_before_comment = 2
[isort]
skip =
__pycache__
.git
.github
.ipynb_checkpoints
.pytest_cache
.vscode
dockerfiles
docs
examples
line_length = 99
[tool:pytest]
addopts =
-v
--durations=10
--cache-clear
--cov=tf_keras_vis/
--cov-report=term-missing
--pycodestyle
env =
TF_KERAS_VIS_MAX_STEPS=3
[pycodestyle]
max-line-length = 99
exclude = docs/*
[coverage:run]
omit =
docs/*
*/test.py
tests/*
__pycache__/*
tf_keras_vis/utils/callbacks.py
tf_keras_vis/utils/losses.py
tf_keras_vis/utils/input_modifiers.py
[coverage:report]
exclude_lines =
continue
pass
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
version