-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
55 lines (48 loc) · 945 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
53
54
55
[bumpversion]
current_version = 2.3.5
commit = True
tag = True
[bumpversion:file:taskmanager/__init__.py]
serialize = ({major}, {minor}, {patch})
parse = \((?P<major>\d+),\s(?P<minor>\d+),\s(?P<patch>\d+)\)
[coverage:run]
branch = True
omit =
.tox/*
*/__init__.py
*/migrations/*
*/tests/*
*/wsgi.py
manage.py
setup.py
source = .
[mypy]
files = taskmanager
ignore_missing_imports = true
[mypy-*.migrations.*]
ignore_errors = True
[flake8]
exclude =
__pycache__,
.eggs,
.git,
.tox,
*/migrations/*,
*/venv/*,
ignore = E203,E266,E501,W503
max-line-length = 80
select = B,C,D,E,F,I,W,T4,B9
[isort]
combine_as_imports = True
default_section = THIRDPARTY
force_grid_wrap = 0
include_trailing_comma = True
known_first_party = taskmanager
known_third_party = django, file_read_backwards
line_length = 88
multi_line_output = 3
not_skip = __init__.py
use_parentheses = True
skip = venv,migrations
[metadata]
license-file = LICENSE.md