-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
44 lines (40 loc) · 881 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
[aliases]
test=pytest
[install]
#prefix=/usr/local
[tool:pytest]
addopts = -v
testpaths = 'tests'
[flake8]
exclude = src/faber/termcolor.py
ignore =
# visually indented line with same indent as next logical line
E129,
# missing whitespace around operator
E225,
# missing whichspace around bitwise or shift operator
E227,
# expected 1 blank line
E301,
# limit line length to 79 chars
E501,
# multiple statements on one line (colon)
E701,
# multiple statements on one line (def)
E704,
# do not assign a lambda expression, use a def
E731,
# ambiguous variable name
E741,
# ... unable to detect undefined names
F403,
# ... may be undefined, or defined from star imports
F405,
# line break after binary operator
W504
[versioneer]
VCS = git
style = pep440
versionfile_source = src/faber/_version.py
versionfile_build = faber/_version.py
tag_prefix = release/