-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (26 loc) · 581 Bytes
/
setup.cfg
File metadata and controls
32 lines (26 loc) · 581 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
30
31
[bdist_wheel]
universal = 1
[isort]
known_third_party = django
default_section = THIRDPARTY
skip = migrations
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[flake8]
max-line-length = 110
exclude = .git,__pycache__,.tox,dist,build,*.egg-info
[mypy]
ignore_missing_imports = True
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = --ds=tests.settings
[coverage:run]
source = django_minify_compress_staticfiles
branch = true
omit = */migrations/*