From 1dc0ea2c968b172c35cc1e4a7ebd4618168cf7d9 Mon Sep 17 00:00:00 2001 From: Adam Richardson Date: Thu, 13 Apr 2023 19:13:04 +0100 Subject: [PATCH] Add cmake as a build dependency in the pyproject.toml file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 12296ac..7ce4790 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ [build-system] -requires = ["setuptools>=49.5.0", "pybind11"] +requires = ["setuptools>=49.5.0", "pybind11", "cmake"] build-backend = "setuptools.build_meta"