From ea505552b752e28bdf93e4953f2ba1c1e22139d7 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Wed, 5 Jan 2022 15:48:47 -0800 Subject: [PATCH] Fixes #35; Declare build dependency on Cython using pyproject.toml --- 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..bcfa9c6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel", "numpy<=1.20.1", "cython"] +build-backend = "setuptools.build_meta" \ No newline at end of file