opm-simulators/python/pybind11/setup.cfg

13 lines
312 B
INI
Raw Normal View History

2019-10-31 10:35:29 -05:00
[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