From e6516a9958c2636d069994166f5cb0c77c298e95 Mon Sep 17 00:00:00 2001 From: xxyzz Date: Thu, 27 Apr 2023 08:35:04 +0800 Subject: [PATCH] Add pyproject.toml Install Cython as build dependency when build from source with pip. --- 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..48e56fea --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "Cython>=0.29.28"] +build-backend = "setuptools.build_meta"