forked from jannikmi/extremitypathfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
executable file
·47 lines (39 loc) · 933 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
[metadata]
version = file: VERSION
long_description = file: README.rst
long_description_content_type = text/x-rst
license_file = LICENSE
[bdist_wheel]
; does not run on Python 2 and 3
universal = 0
[isort]
;https://github.com/timothycrosley/isort/wiki/isort-Settings
include_trailing_comma = True
known_first_party = extremitypathfinder
known_third_party = helpers,matplotlib,numpy,pytest,setuptools
line_length = 120
multi_line_output = 5
balanced_wrapping = True
use_parentheses = True
[coverage:run]
branch = True
include = */extremitypathfinder/*
[coverage:paths]
source =
extremitypathfinder
.tox/*/site-packages
[coverage:report]
show_missing = True
[flake8]
max_line_length = 120
;trailing comma
ignore = C819
[tool:multilint]
paths = extremitypathfinder
setup.py
tests
[tool:pytest]
; TODO make it work
testpaths = tests
addopts = --cov=extremitypathfinder
--cov-report term-missing