-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.cfg
52 lines (46 loc) · 822 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
48
49
50
51
52
[bdist_wheel]
universal = 1
[wheel]
universal = 1
[coverage:run]
branch = True
source = ./src/fobi/
[coverage:report]
fail_under = 95
show_missing = True
[flake8]
exclude =
build,
dist,
docs,
.git,
.tox,
./src/fobi/migrations/*.py
./src/fobi/south_migrations/*.py
ignore =
max-line-length = 80
[isort]
line_length = 80
atomic = true
combine_as_imports = true
default_section = THIRDPARTY
forced_separate = fobi
include_trailing_comma = true
known_first_party = fobi
known_third_party =
django
factory
multi_line_output = 3
skip =
docs,
fabfile.py
setup.py,
wsgi.py,
./src/fobi/migrations/*.py,
./src/fobi/south_migrations/*.py
.tox/
skip_glob = **/migrations/*.py
force_grid_wrap = 0
use_parentheses = true
[metadata]
license-file = LICENSE_GPL2.0.txt