forked from christoph2/asamint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (44 loc) · 808 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
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 132
ignore = D203, E203, E266, E501, W503, F403, F401, BLK100
select = B,C,E,F,W,T4,B9
count = 1
statistics = 1
show-source = 1
exclude=
.git,
__pycache__,
.mypy_cache,
.tox,
.venv,
.eggs,
_build,
build,
docs,
dist,
asamint/parsers/dcm20Parser.py,
asamint/parsers/dcm20Lexer.py
[black]
line-length = 132
exclude =
.git,
.mypy_cache,
.tox,
.venv,
_build,
build,
docs,
__pypackages__,
__pycache__,
dist,
asamint/parsers/dcm20Parser.py,
asamint/parsers/dcm20Lexer.py
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
addopts = --verbose --tb=short --junitxml=result.xml
testpaths = tests
junit_family=legacy