New python folder containing pybind11

This commit is contained in:
Michael Sargado
2019-10-31 16:35:29 +01:00
parent 671ab68709
commit eae6afff80
182 changed files with 40070 additions and 0 deletions

12
python/pybind11/setup.cfg Normal file
View File

@@ -0,0 +1,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