summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: ad731f950ce31a642df46a103007c32b07a0d67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]
ignore=
    # whitespace before ':' - doesn't work well with black
    E203
    E402
    # line too long - let black worry about that
    E501
    # do not assign a lambda expression, use a def
    E731
    # line break before binary operator
    W503
exclude=
    build

[zest.releaser]
python-file-with-version = version.py
create-wheel = yes