From 9834d7aae0faf2b1cc9b96c7c20b087f96374c51 Mon Sep 17 00:00:00 2001 From: Zachary Wimer Date: Tue, 12 Apr 2022 23:31:24 -0700 Subject: [PATCH] Setup.py fix dependencies (#5971) * Add wheel as build dependency * pyproject toml update --- src/api/python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/api/python/pyproject.toml diff --git a/src/api/python/pyproject.toml b/src/api/python/pyproject.toml new file mode 100644 index 000000000..ead8162b7 --- /dev/null +++ b/src/api/python/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=46.4.0", "wheel"] +build-backend = "setuptools.build_meta"