-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
21 lines (19 loc) · 837 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
license_files = LICENSE
[tool:pytest]
addopts = -W ignore::DeprecationWarning
[flake8]
# https://www.flake8rules.com/
# E501 Line too long (... > 79 characters)
# E502 The backslash is redundant between brackets
# E111 Indentation is not a multiple of 4
# E114 Indentation is not a multiple of 4 (comment)
# E121 Continuation line under-indented for hanging indent
# E126 Continuation line over-indented for hanging indent
# E127 Continuation line over-indented for visual indent
# E704 Multiple statements on one line (def)
# E731 Do not assign a lambda expression
# W504 line break after binary operator
ignore = E501,E502,E111,E114,E121,E126,E127,E704,E731,W504