forked from sjoerdk/anonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
61 lines (56 loc) · 1.36 KB
/
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
56
57
58
59
60
61
[bumpversion]
current_version = 1.7.0
commit = True
tag = True
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:anonapi/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
max-line-length = 79
application-import-names =
anonapi
tests
import-order-style = pycharm
docstring-convention = numpy
max-complexity = 10
select =
B
B9
C
D
E
F
I
N
W
ignore =
# D1 are public documentation checks
D1
# D400 First line should end with a period, see D205
D400
# D401 First line should be in imperative mood, lots of false positives
D401
# D202 No blank lines allowed after function docstring, conflicts with black
D202
# D205 1 blank line required between summary line and description
D205
# E203 is not PEP8 compliant (see black formatting)
E203
# E501 (line lengths) will be checked with B950 instead
E501
# W503 is not PEP8 compliant (see black formatting)
W503
# N815 allow mixedCase. Matching case of MINT API url parameters is clearer then renaming
N815
# B907 Explicitly surrounding keys with quotes is clearer than implicit conversion
B907
# zip() without explicit strict= parameter makes no sense <py3.10
B905
[aliases]
test = pytest