Replace setup.py with build#342
Merged
jdufresne merged 1 commit intopython-distro:masterfrom Jun 27, 2022
jdufresne:build
Merged
Replace setup.py with build#342jdufresne merged 1 commit intopython-distro:masterfrom jdufresne:build
jdufresne merged 1 commit intopython-distro:masterfrom
jdufresne:build
Conversation
Using setup.py is no longer recommended by setuptools. Instead, projects should use build: https://github.com/pypa/build. Invoking build will create a source and wheel distribution https://pypa-build.readthedocs.io/en/latest/: > By default, a source distribution (sdist) is built from {srcdir} and a > binary distribution (wheel) is built from the sdist. See the setuptools quickstart guides for more information: https://setuptools.pypa.io/en/latest/userguide/quickstart.html > Instead, when creating new Python packages, it is recommended to use a > command line tool called build. This tool will automatically download > setuptools and any other build-time dependencies that your project > might have. You just need to specify them in a pyproject.toml file at > the root of your package, as indicated in the following section.
sethmlarson
approved these changes
Jun 26, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Using setup.py is no longer recommended by setuptools. Instead, projects
should use build: https://github.com/pypa/build. Invoking build will
create a source and wheel distribution
https://pypa-build.readthedocs.io/en/latest/:
See the setuptools quickstart guides for more information:
https://setuptools.pypa.io/en/latest/userguide/quickstart.html