From cf36d0daa28fc3c295696cd75ab9e92f7d2667ea Mon Sep 17 00:00:00 2001 From: cvzi Date: Wed, 21 Jun 2023 10:33:49 +0200 Subject: [PATCH] Add a minimal pyproject.toml This allows pip to generate a wheel-file when installing from source/tarballs. Resolves #264 --- 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 00000000..4aff98bb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=61.0.0", "wheel"] +build-backend = "setuptools.build_meta"