summaryrefslogtreecommitdiff
path: root/ext/pybind11/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/setup.cfg')
-rw-r--r--ext/pybind11/setup.cfg10
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/pybind11/setup.cfg b/ext/pybind11/setup.cfg
new file mode 100644
index 000000000..9e5e88d82
--- /dev/null
+++ b/ext/pybind11/setup.cfg
@@ -0,0 +1,10 @@
+[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 formating: multiple spaces after `,` and `[`
+ E201, E241