forked from varfish-org/varfish-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (44 loc) · 968 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
[flake8]
max-line-length = 100
ignore = E203, E266, E501, W503
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[pycodestyle]
max-line-length = 100
exclude=.tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[versioneer]
VCS = git
style = pep440
versionfile_source = varfish/_version.py
versionfile_build = varfish/_version.py
tag_prefix = v
[coverage:run]
source =
annotation
bgjobs
clinvar
conservation
dbsnp
frequencies
geneinfo
importer
pathways
templatetags
utility
varfish
variants
svdbs
svs
omit =
varfish/_version.py
*migrations*
*tests*
[coverage:report]
exclude_lines =
# Re-enable standard pragma
pragma: no cover
# Ignore repr() builtin definition, mostly useful for debug code anway
def __repr__
# Ignore the __main__ entry points
if __name__ == '__main__':
# Ignore abstract function bodies
raise NotImplementedError