Skip to content

Commit

Permalink
Add missing build-system section to pyproject.toml
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mgorny authored and romanz committed Dec 24, 2024
1 parent b944ae2 commit ed49192
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "amodem"
version = "1.16.0"
Expand Down

0 comments on commit ed49192

Please sign in to comment.