-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
pyproject.toml should be included in sdist by default #1632
Comments
I think the same issue should be put into Python bugtracker for |
@daa I think at this point new changes like this are not likely to be accepted in |
From PEP 517:
So at least sdists built through Should I file a PR to special-case |
An issue came up at work recently where installing python-daemon with
pip
was hitting theeasy_install
path. I assumed it was becausepython-daemon
didn't have apyproject.toml
, but it turns out they do - it's just not included in theManifest.in
, so it didn't get included in thesdist
. To verify this I created a super basic example project and it does seem that the default is to excludepyproject.toml
.Given that
pyproject.toml
is one of the most important files to have when executing a build, it should be included in the sdist unless explicitly excluded.The text was updated successfully, but these errors were encountered: