forked from pythonindia/junction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (39 loc) · 835 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
[bumpversion]
current_version = 0.3.2
commit = True
tag = True
[bumpversion:file:junction/__init__.py]
[bumpversion:file:README.md]
[coverage:run]
source = junction/
omit =
*tests*
*commands*
*migrations*
*admin*
*wsgi*
*conftest*
*venv*
[coverage:report]
show_missing = False
skip_covered = True
[flake8]
max-line-length = 120
[tool:isort]
line_length = 88
force_grid_wrap = 0
known_first_party = junction
default_section = THIRDPARTY
multi_line_output = 3
include_trailing_comma = True
use_parentheses = True
# No import comments, thanks.
import_heading_future =
import_heading_stdlib =
import_heading_thirdparty =
import_heading_firstparty =
import_heading_localfolder =
[tool:pytest]
DJANGO_SETTINGS_MODULE = settings.test_settings
addopts = --reuse-db
norecursedirs = .tox .git */migrations/* */static/* docs venv