forked from GranthamImperial/silicone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (29 loc) · 838 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
[metadata]
description-file = README.rst
[tool:pytest]
testpaths = tests
[versioneer]
VCS = git
style = pep440
versionfile_source = src/silicone/_version.py
versionfile_build = silicone/_version.py
tag_prefix = v
parentdir_prefix = silicone-
[flake8]
max-line-length = 88
ignore = E203, E266, E501, W503
# E203 - whitespace before ':'. Opposite convention enforced by black
# E266 - too many leading '#' for block comments
# E501 - line too long. Handled by black, we have longer lines
# W503 - line break before binary operator.
[isort]
default_section = THIRDPARTY
# comma after multiline breaks like black:
include_trailing_comma = true
known_first_party = silicone
# black default line length:
line_length = 88
# multiline breaks like black:
multi_line_output = 3
not_skip = __init__.py
skip = versioneer.py, silicone/_version.py