-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
42 lines (38 loc) · 893 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
[bdist_wheel]
universal=1
[metadata]
description-file=README.rst
[isort]
multi_line_output=3
[flake8]
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
ignore =
# D413 Missing blank line after last section
D413,
# C901 too complex
C901,
# Q000 remove bad quote
Q000,
# from black
# E203 whitespace before ':'
E203,
# W503 line break before binary operator
W503,
max-line-length = 140
[tool:pytest]
filterwarnings=
ignore::DeprecationWarning
markers=
non_travis_test: test will not run on travis