From ea4ef7c96dcc83d5f1f18d4b15f3709f32c47a24 Mon Sep 17 00:00:00 2001 From: matham Date: Sat, 5 Sep 2020 16:52:17 -0400 Subject: [PATCH] Add pyproject.toml (#69) * Add pyproject.toml * No need to specify cython manually. * We need cython for makefile. --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..48454e8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,5 @@ +[build-system] +requires = [ + "setuptools", "wheel", + "cython", +]