forked from biocommons/hgvs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
104 lines (86 loc) · 1.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[options]
zip_safe = True
include_package_data = True
packages = find_namespace:
package_dir =
=src
install_requires =
attrs >= 17.4.0 # https://github.com/biocommons/hgvs/issues/473
biocommons.seqrepo >= 0.6.5
bioutils >= 0.4.0,<1.0
configparser >= 3.3.0
ipython
parsley
psycopg2
six
[options.packages.find]
where = src
# TODO: Needed?
# exclude =
# __pycache__
# *.pyc
setup_requires =
pytest-runner
setuptools_scm
wheel
[options.package_data]
hgvs =
_data/*
[options.extras_require]
dev =
black
flake8
ipython
isort
jupyter
pytest >= 5.3
pytest-cov >= 2.8
pytest-vcr
restview
setuptools
sphinx
sphinx_rtd_theme
sphinxcontrib-fulltoc >= 1.1
tox
vcrpy
yapf
[aliases]
test = pytest
[bdist_wheel]
universal = 1
[build_sphinx]
all_files = 1
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
[flake8]
max-line-length = 120
exclude = tests/*
max-complexity = 10
ignore = E129,E221,E241,E251,E303,W291
[run]
# enable branch coverage after we get default coverage up
# branch = True
omit =
hgvs/__init__.py
hgvs/dataproviders/interface.py
hgvs/dataproviders/ncbi.py
hgvs/dataproviders/uta.py
hgvs/decorators/*
hgvs/intervalmapper.py
hgvs/shell.py
hgvs/transcriptmapper.py
hgvs/utils/PersistentDict.py
hgvs/utils/context.py
hgvs/utils/orderedenum.py
[report]
show_missing = True
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.: