From fab0a6c8fc50591d392736b85b1ba73744d9dbff Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Wed, 28 Apr 2021 14:29:49 -0500 Subject: [PATCH 1/2] add pyproject.toml to specify cython and numpy as build deps --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..174965a1b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["cython", "numpy", "setuptools", "wheel"] \ No newline at end of file From ae9e335759d86ffd8d9d81205ea5e88bd2c20cd8 Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Thu, 29 Apr 2021 06:33:16 -0500 Subject: [PATCH 2/2] suggestions from code review - newline at EOF and specify build-backend --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 174965a1b..06ae32aac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,3 @@ [build-system] -requires = ["cython", "numpy", "setuptools", "wheel"] \ No newline at end of file +requires = ["cython", "numpy", "setuptools", "wheel"] +build-backend = "setuptools.build_meta"