From 7bc39e6d9d51e7321bfca8793e21b8066d9859d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Magimel?= Date: Thu, 20 Jan 2022 09:29:59 +0100 Subject: [PATCH] build: explicit the build system Setuptools is needed to build this package. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7145f7d..065ae19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"] +build-backend = "setuptools.build_meta" + [tool.black] target-version = ["py37"]