-
Notifications
You must be signed in to change notification settings - Fork 198
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
missing in git repo (but present in sdist tarball)
#638
Comments
Ah dip! The
I'd love the help. I'll review the links, and commit the file shortly. ... And thinks for reporting this. |
Added |
Thanks! You don't actually need all three — everything from |
Great, and thank you for the help. Killing |
Yeah, I think it's fine. The declarations in |
Think we're good to close this issue. |
The
Wand-0.6.12.tar.gz
sdist on PyPI contains apyproject.toml
but said file isn't present in the git repo. Could you add it, please?That said, I've noticed because I wanted to submit a fix for two problems:
wheel
dependency is unnecessary (see pypa/setuptools@f7d30a9).sys.path.insert(0, ".")
before importing files relative to the package directory when using the modernsetuptools
backend, otherwise it may be unable to importwand.version
(depending on PEP517 frontend invocation). (Alternatively, you can use more modernsetup.cfg
/pyproject.toml
approach for getting version from file that doesn't require importing it; see: https://setuptools.pypa.io/en/latest/userguide/declarative_config.html or https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata).Of course, I can submit PRs for these once the file's in the repo.
The text was updated successfully, but these errors were encountered: