Skip to content

Commit 7f42f41

Browse files
henryiiilwasser
authored andcommitted
fix: incorrect backend key
1 parent 1e50431 commit 7f42f41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ package setup uses:
3939
```
4040
[build-system]
4141
requires = ["pdm-backend>=1.0.0"]
42-
build-back-end = "pdm.backend"
42+
build-backend = "pdm.backend"
4343
4444
[project]
4545
name = "examplePy"
@@ -72,15 +72,15 @@ In this example package setup you use:
7272
- **setuptools_scm** to manage package version updates using version control tags
7373

7474
In the example below `[build-system]` is the first table
75-
of values. It has two keys that specify the build front end and back-end for a package:
75+
of values. It has two keys that specify the build frontend and backend for a package:
7676

7777
1. `requires =`
7878
1. `build-back-end =`
7979

8080
```
8181
[build-system]
8282
requires = ["setuptools>=45"]
83-
build-back-end = "setuptools.build_meta"
83+
build-backend = "setuptools.build_meta"
8484
8585
[project]
8686
name = "examplePy"

0 commit comments

Comments
 (0)