From 4381e1f2994be2012389274e0b13549bdead012d Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Wed, 16 Dec 2020 12:21:58 -0800 Subject: [PATCH] Add pyproject.yaml. This file describes the dependencies needed to load the `setup.py` file. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- 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 0000000..801edb2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel", "pkgconfig", "cython"]