From a2614d3e66cefd8d0fa73b23bc951feb98830090 Mon Sep 17 00:00:00 2001 From: Gerson Beckenkamp Date: Fri, 25 Nov 2022 22:33:44 +0000 Subject: [PATCH] Add cython and setuptools as minimum requirements to make sure a that a clean environment can install the package --- 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..43b3f4f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +# Minimum requirements for the build system to execute. +requires = ["Cython==0.29.14", "setuptools>=32.0.0"] \ No newline at end of file