forked from bihealth/cubi-tk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (41 loc) · 959 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
42
43
44
45
46
47
48
49
50
51
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[flake8]
exclude =
.github
.tox
docs/
src/
cubi_tk/__init__.py
versioneer.py
# TODO: remove C901 again
ignore = E203, E266, E501, W503, C901
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
[tool:pytest]
addopts = --cov=cubi_tk --cov=tests --cov-report=xml
testpaths = tests
[coverage:run]
omit =
cubi_tk/_version.py
# exclude logger lines from test coverage
[coverage:report]
exclude_also =
logger.
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = cubi_tk/_version.py
versionfile_build = cubi_tk/_version.py
tag_prefix = v
parentdir_prefix = cubi_tk
[mypy]
ignore_missing_imports = true
[pydocstyle]
ignore = D100,D101,D102,D105,D103,D104,D105,D107,D202,D203,D204,D213