-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
42 lines (38 loc) · 817 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
[bumpversion]
current_version = 1.2.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<pre_kind>a|b|rc)(?P<pre>\d+))?
serialize =
{major}.{minor}.{patch}{pre_kind}{pre}
{major}.{minor}.{patch}
[bumpversion:part:pre_kind]
first_value = a
optional_value = prod
values =
a
b
rc
prod
[bumpversion:part:build]
first_value = 1
[bumpversion:file:setup.py]
[flake8]
ignore =
E131,E203,Q000,
D100,D101,D102,D103,D104,D401
DAR101,DAR201,DAR401,S101,C812
max-line-length = 120
max-local-variables = 50
max-arguments = 15
max-methods = 15
max-imports = 25
max-string-usages = 30
max-try-body-length = 20
max-tuple-unpack-length = 10
max-line-complexity = 50
max-complexity = 10
max-function-expressions = 20
max-module-expressions = 20
max-module-members = 10
extend-ignore = E203