-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
41 lines (37 loc) · 898 Bytes
/
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
[coverage:run]
omit =
# Omit the tests
*/tests/*
# Omit the CLI as codecov does not work well with the multi-processing code.
nagl/cli/label/*
nagl/cli/prepare/*
# Omit generated versioneer
nagl/_version.py
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING:
omit =
# Omit the tests
*/tests/*
# Omit the CLI as codecov does not work well with the multi-processing code.
nagl/cli/label/*
nagl/cli/prepare/*
# Omit generated versioneer
nagl/_version.py
[flake8]
# Flake8, PyFlakes, etc
max-line-length = 88
ignore = E203, E266, E501, W503
select = B,C,E,F,W,T4,B9
[isort]
profile = black
[versioneer]
# Automatic version numbering scheme
VCS = git
style = pep440
versionfile_source = nagl/_version.py
versionfile_build = nagl/_version.py
tag_prefix = ''