From d014f40cd459c1d3219884a127928073dc926dcc Mon Sep 17 00:00:00 2001 From: Paul Prescod Date: Fri, 8 Dec 2023 02:40:45 -0800 Subject: [PATCH] Fix error when installing in envs that don't already have dependencies. --- 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..da075d1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["packaging", "torch", "setuptools", "wheel"]