Skip to content

Commit e31f6f0

Browse files
committed
Enh: final edits
1 parent 780ed50 commit e31f6f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package-structure-code/pyproject-toml-python-package-metadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The **pyproject.toml** file is written in [TOML (Tom's Obvious, Minimal Language
99
Below that table identifier are key/value pairs that
1010
support configuration for that particular table.
1111

12-
### Benefits of using a pyproject.toml file
12+
## Benefits of using a pyproject.toml file
1313

1414
Including your package's metadata in a separate human-readable **pyproject.toml**
1515
format also allows someone to view the project's metadata in a GitHub repository.

package-structure-code/python-package-distribution-files-sdist-wheel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ and PyPI can use, is called a build step.
2727

2828
The metadata that both build tools and PyPI uses to describe and understand your package is generally stored in a [pyproject.toml file](pyproject-toml-python-package-metadata). This metadata is used for several purposes:
2929

30-
1. It helps whatever tool you use to build your package (pip, pypa's Build or an end-to-end tool such as poetry, PDM or Hatch) understand how to build your package. Information it provides to your build tool includes:
30+
1. It helps whatever tool you use to build your package (pip, [pypa's Build](https://pypi.org/project/build/) or an end-to-end tool such as poetry, PDM or Hatch) understand how to build your package. Information it provides to your build tool includes:
3131

3232
- The [build-system] table in your pyproject.toml file tells pip what [build backend tool](python-package-build-tools.html#build-back-ends) you wish to use for creating your sdist and wheel distributions.
3333

0 commit comments

Comments
 (0)