From 412241b32c97cfbdf70712ff3875353c47157780 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Thu, 25 Nov 2021 09:12:32 +0100 Subject: [PATCH] Provide a pyproject.toml Permits installing via wheel, even if this dependency is not yet installed. Reported-by: Marius Kriegerowski Signed-off-by: Jan Kiszka --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..dddc002 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools>=40.5.0", "wheel"]