Skip to content

Commit 64b7cf6

Browse files
santisolerlwasser
authored andcommitted
Minor Markdown improvement on packaging page
Apply some minor improvements to the Markdown syntax in the pages instruction on how to create the `pyproject.toml` file.
1 parent 46b4f54 commit 64b7cf6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ When you create your `pyproject.toml` file, there are numerous metadata fields t
139139

140140
[An overview of all of the project metadata elements can be found here.](https://packaging.python.org/en/latest/specifications/core-metadata/#project-url-multiple-use)
141141

142-
### Required fields for the [project] table
142+
### Required fields for the `[project]` table
143143

144-
As mentioned above, your pyproject.toml file needs to have a **name** and **version** field in order to properly build your package:
144+
As mentioned above, your `pyproject.toml` file needs to have a **`name`** and **`version`** field in order to properly build your package:
145145

146-
- Name: This is the name of your project provided as a string
147-
- Version: This is the version of your project. If you are using a scm tool for versioning (using git tags to determine versions), then the version may be dynamic (more on that below).
146+
- `name`: This is the name of your project provided as a string
147+
- `version`: This is the version of your project. If you are using a SCM tool for versioning (using git tags to determine versions), then the version may be dynamic (more on that below).
148148

149149
### Optional fields to include in the `[project]` table
150150

0 commit comments

Comments
 (0)