-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PEP 621 (https://peps.python.org/pep-0621/) defines using the `pyproject.toml` file to store project metadata in the [project] table. This has several advantages over using `setup.cfg` or `setup.py` to store the project metadata, namely: * consolidates metadata and configuration into one file; `pyproject.toml` is required by PEP 517 (https://peps.python.org/pep-0517/) and many third party tools use it to store their configuration * allows alternate build tools other than `setuptools` (such as hatch or meson) to read the same project metadata
- Loading branch information
1 parent
ca1f341
commit 0fb1b8a
Showing
4 changed files
with
56 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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