From ed491925b2ae926a631724fd45f4a3697e33c034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 24 Dec 2024 08:40:29 +0100 Subject: [PATCH] Add missing `build-system` section to `pyproject.toml` Add missing `build-system` section to make the `pyproject.toml` file conform to PEP 517, and use the correct `setuptools.build_meta` backend. This is necessary to make the package build with the more strict packaging tools, e.g. used by Gentoo. See: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1011fd6..8ebc7e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + [project] name = "amodem" version = "1.16.0"