From fad7c5cf39962a53e61b9b330584046ada17458c Mon Sep 17 00:00:00 2001 From: Dylan Ross Date: Thu, 22 Sep 2022 10:36:27 -0400 Subject: [PATCH] Add pyproject.toml to fix Cython dependency issue Signed-off-by: Dylan Ross --- 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..e5ac58c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "Cython>=0.27"] +build-backend = "setuptools.build_meta"