aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 002f38d10e46472657ff8228139e0f92b0d5bc10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[bdist_wheel]
universal=1

[flake8]
max-line-length = 99
show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
ignore =
    # required for pretty matrix formatting: multiple spaces after `,` and `[`
    E201, E241, W504,
    # camelcase 'cPickle' imported as lowercase 'pickle'
    N813