forked from ulelab/imaps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (25 loc) · 762 Bytes
/
setup.cfg
File metadata and controls
29 lines (25 loc) · 762 Bytes
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
[wheel]
# code is written to work on Python 3
universal=1
[tool:pytest]
# XXX: Temporarily disable log message capturing introduced in Pytest 3.3.0+
# since it breaks resdk.tests.unit.test_resolwe.TestRun.test_dehydrate_data and
# resdk.tests.unit.test_relations.TestRelation.test_collection tests.
addopts = -p no:logging
[pycodestyle]
max-line-length=119
# Ignore E127: checked by pylint
# E127 continuation line over-indented for visual indent
ignore=E127,W503
[pydocstyle]
match-dir = (?!tests|\.).*
match = (?!setup).*.py
add-select = D404
[isort]
line_length = 119
default_section = THIRDPARTY
multi_line_output = 5
include_trailing_comma = True
known_first_party = resdk
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
not_skip = __init__.py