forked from pawamoy/django-appsettings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (61 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
68
69
70
71
72
73
74
[bumpversion]
current_version = 0.7.1
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120
[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 = 120
not_skip = __init__.py
skip = migrations
multi_line_output = 3
force_single_line = False
balanced_wrapping = True
default_section = THIRDPARTY
known_first_party = appsettings
include_trailing_comma = True
[bumpversion:file:setup.py]
[bumpversion:file:docs/conf.py]
[coverage:paths]
source =
src/appsettings
*/site-packages/appsettings
[coverage:run]
branch = true
source =
appsettings
tests
parallel = true
[coverage:report]
show_missing = true
precision = 2
omit =
*migrations*
tests/*
[coverage:html]
directory = build/coverage_html_report
[mypy]
check_untyped_defs = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True