setup.cfg (11986:c12e4625ab56) setup.cfg (14299:2fbea9df56d2)
1[bdist_wheel]
2universal=1
3
4[flake8]
5max-line-length = 99
6show_source = True
7exclude = .git, __pycache__, build, dist, docs, tools, venv
8ignore =
1[bdist_wheel]
2universal=1
3
4[flake8]
5max-line-length = 99
6show_source = True
7exclude = .git, __pycache__, build, dist, docs, tools, venv
8ignore =
9 # required for pretty matrix formating: multiple spaces after `,` and `[`
10 E201, E241
9 # required for pretty matrix formatting: multiple spaces after `,` and `[`
10 E201, E241, W504,
11 # camelcase 'cPickle' imported as lowercase 'pickle'
12 N813