bindep/pyproject.toml
Clark Boylan fdff6b292a Use PBR's pyproject.toml build-backend support
setup.py is still required as the build_meta entrypoints PBR uses
execute setup.py, but only needs to set the pbr attribute to True
now. Really what this change gets us is control over the version of
SetupTools and PBR that are used, but much of the underlying
machinery doesn't change.

Some gymnastics are required in order to keep working with Python
3.6, due to Pip and SetupTools disagreeing on PEP 660 support with
that interpreter version, but appropriate TODO comments are left as
a reminder to simplify once we no longer care to support those
platforms.

Change-Id: If210b5f5b5b7b9bbcb2538c49fbe7a5f7b8260ed
2025-02-05 21:12:01 +00:00

4 lines
69 B
TOML

[build-system]
requires = ["pbr>=6.1.1"]
build-backend = "pbr.build"