-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
47 lines (39 loc) · 954 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
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[flake8]
exclude =
.github
.tox
docs/
rodeos_ingest/__init__.py
versioneer.py
ignore = E203, E266, E501, W503
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
[tool:pytest]
addopts = --cov=rodeos_ingest --cov-report=xml --cov-report=html
pep8ignore =
docs/* ALL
examples/*.py E501
tests/*.py E501
vcfpy/*.py F401
env =
RODEOS_DELAY_UNTIL_AT_REST_SECONDS=1
[coverage:run]
omit =
rodeos_ingest/_version.py
# 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 = rodeos_ingest/_version.py
versionfile_build = rodeos_ingest/_version.py
tag_prefix = v
parentdir_prefix = rodeos_ingest
[pydocstyle]
ignore = D100,D101,D102,D105,D103,D104,D105,D107,D202,D203,D204,D213