make setup dependencies discoverable

Currently, dependency resolvers like the one of PDM, cannot resolve the
setup dependencies correctly, as those are hidden inside the python
code of setup.py

Supplement setup.py with pyproject.toml. Note that we can't remove
setup.py yet, as it remains part of OpenStack's Project Testing
Interface.

Change-Id: Ifb414df2577bc9ada78eaa26747da4f4bd673dda
This commit is contained in:
DavHau 2024-01-03 11:26:36 +07:00 committed by Tim Burke
parent 7e65d10199
commit 85a3e827a5

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "pbr"]
build-backend = "setuptools.build_meta"