From f66ad8eeff09fe903589a8d13e419b63e7551871 Mon Sep 17 00:00:00 2001 From: Pieter Lenaerts Date: Wed, 10 Jun 2026 22:14:06 +0200 Subject: [PATCH] Add PEP 517 build-system to pyproject.toml Add setuptools build backend configuration, enabling PEP 517 compliant builds. This allows pybuild to build the package for Debian, and improves upstream packaging by enabling isolated build environments via pip. Forwarded: no --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 88b249d..827f572 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + [tool.black] target-version = ["py38"]