From 7dcaf602d8f01c20243ec0c0b249608142a4cdf1 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Mon, 12 Feb 2024 12:11:04 -0500 Subject: [PATCH] Add pyproject.toml with wheel as build-time dependency --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9787c3b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta"