summaryrefslogtreecommitdiff
path: root/wrappers/python/pyproject.toml
diff options
context:
space:
mode:
authorStevenWdV <stevenwdv@gmail.com>2021-12-03 12:31:30 +0100
committerStevenWdV <stevenwdv@gmail.com>2021-12-03 12:31:30 +0100
commitb60eadf76f92d7f8878fcbec6de7ab6ea4572a89 (patch)
treedc5f54de407721ef45f3e9860642efe43bfe6b2a /wrappers/python/pyproject.toml
parente4744fd94236944569bfed27af80a604b7668e4b (diff)
Add initial Python wheel support
Diffstat (limited to 'wrappers/python/pyproject.toml')
-rw-r--r--wrappers/python/pyproject.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/wrappers/python/pyproject.toml b/wrappers/python/pyproject.toml
new file mode 100644
index 0000000..44836bb
--- /dev/null
+++ b/wrappers/python/pyproject.toml
@@ -0,0 +1,6 @@
+[build-system]
+requires = [
+ "setuptools",
+ "wheel",
+]
+build-backend = "setuptools.build_meta"