-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.cfg
73 lines (67 loc) · 1.95 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
[metadata]
description_file = README.md
[nosetests]
cover-package=yggdrasil
with-coverage=1
[tool:pytest]
norecursedirs = .* build dist CVS _darcs {arch} *.egg rapidjson tests/helpers scripts
python_files = test_*.py __init__.py
[coverage:run]
omit =
# */python?.?/*
*/lib-python/?.?/*.py
*/lib_pypy/_*.py
*/site-packages/ordereddict.py
*/site-packages/nose/*
*/unittest2/*
*/yggdrasil/tests/scripts/python_model.py
*/yggdrasil/command_line.py
*/yggdrasil/scanf.py
*/yggdrasil/languages/*/install.py
*/yggdrasil/languages/LPy/lpy_model.py
*/yggdrasil/languages/Python/CisInterface.py
*/yggdrasil/_version.py
*/yggdrasil/rapidjson/*
*/yggdrasil/examples/*/src/*.py
*/yggdrasil/examples/transforms/transforms.py
*/yggdrasil/doctools.py
*/yggdrasil/demos/*
*/yggdrasil/__main__.py
[coverage:report]
sort = Cover
ignore_errors = True
show_missing = True
exclude_lines =
pragma: Python 3.8
pragma: no cover
pragma: debug
pragma: in progress
pragma: config
pragma: completion
pragma: testing
pragma: version
pragma: intermittent
pragma: deprecated
pragma: extern
def __repr__
def description_prefix
if 0:
if False:
if __name__ == .__main__.:
# configuration for flake8
[flake8]
# W293: whitespace on blank lines is ok
# W503: new convention says line breaks should happen before operators
# E203: No space before colon, not pep8 compliant
ignore = W293, W503, E203
# Raise the default 79 limit
max-line-length = 90
# Ignore some well known paths
exclude = .venv,.tox,dist,doc,build,*.egg,./yggdrasil/rapidjson/,./yggdrasil/interface/YggInterface.py,./yggdrasil/interface/CisInterface.py,./yggdrasil/demos,./_vendor/python_rapidjson/pyrj_setup.py
[versioneer]
VCS = git
style = pep440
versionfile_source = yggdrasil/_version.py
versionfile_build = yggdrasil/_version.py
tag_prefix = v
parentdir_prefix = yggdrasil-framework-