-
-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathsetup.cfg
More file actions
25 lines (23 loc) · 538 Bytes
/
setup.cfg
File metadata and controls
25 lines (23 loc) · 538 Bytes
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
[bdist_wheel]
universal=1
[metadata]
description-file = README.md
license_file = LICENSE
[flake8]
# B = bugbear
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
# B9 = bugbear opinions
select = B, E, F, W, B9
ignore =
# Line too long. Handled by E501 and Black
B950
# I don't like this one
B907
max-line-length = 90
per-file-ignores =
# __init__ modules export names
**/__init__.py: F401
# Don't care about using data classes examples. For demo purposes only
examples/*.py: B903