From 7097e63c2e29a1f8aa73ff981279949d0111459b Mon Sep 17 00:00:00 2001 From: Chris Trevino Date: Tue, 20 Sep 2022 13:52:46 -0700 Subject: [PATCH] Add pyproject.toml with basic build dependencies for PEP518 compliance (#553) * add pyproject.toml --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..e2ede155 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,8 @@ +[build-system] +requires = [ + "setuptools>=18.0", + "wheel", + "cython", + "numpy", + "scikit-learn<=1.0.2", +]