-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add build-backend to pyproject.toml #648
Comments
More detail (why do you want this, what will it add, etc) and possibly a PR? |
I believe it's required for PEP 517 tooling and would avoid downstream packagers from having to hack in the info manually. |
I need it to move the ebuild of fontparts in the gentoo overlay ::guru to use PEP517 |
Got it. Read that doc, very helpful: do you know which |
Probably setuptools, as that's what setup.py uses. |
@justvanrossum that's my guess to. On figuring it out as we do use |
Perhaps go pyproject.toml all the way, and only leave a stub setup.py. I'm doing that with a new project and seems to work ok, including |
My [build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta" |
Could you add add build-backend to pyproject.toml?
The text was updated successfully, but these errors were encountered: