forked from pawamoy/django-suit-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
68 lines (58 loc) · 1.01 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
[bumpversion]
current_version = 2.0.6
commit = True
tag = True
[bdist_wheel]
universal = 1
[tool:pytest]
norecursedirs =
.git
.tox
.env
dist
build
south_migrations
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw
--strict
--doctest-modules
--doctest-glob=\*.rst
--tb=short
[isort]
line_length = 79
not_skip = __init__.py
skip = migrations,south_migrations
multi_line_output = 4
force_single_line = False
balanced_wrapping = True
default_section = THIRDPARTY
forced_separate = test_suit_dashboard
known_django = django
known_pandas = pandas,numpy
known_first_party = suit_dashboard
sections = FUTURE,STDLIB,PANDAS,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[style]
column_limit = 79
[coverage:paths]
source =
src/suit_dashboard
*/site-packages/suit_dashboard
[coverage:run]
branch = true
source =
suit_dashboard
tests
parallel = true
[coverage:report]
show_missing = true
precision = 2
omit =
*migrations*
tests/*
[bumpversion:file:setup.py]
[bumpversion:file:docs/conf.py]