Skip to content

Commit aa3e023

Browse files
committed
Fix: feedback from review
1 parent 29b1194 commit aa3e023

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

package-structure-code/declare-dependencies.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Declaring Development Dependencies - Python Packaging
22

3-
## How to declare documentation, test and other deps
3+
## How to declare documentation, test, and other dependencies
44

5-
In the [pyproject.toml overview page](pyproject-toml-python-package-metadata) we discussed how to setup a pyproject.toml file with basic metadata information.
6-
On this page, you will learn about storing and accessing dependency information within the pyproject.toml file.
5+
In the [pyproject.toml overview page](pyproject-toml-python-package-metadata),
6+
we discussed how to set up a **pyproject.toml** file with basic metadata
7+
information. On this page, you will learn about storing and accessing dependency
8+
information within the pyproject.toml file.
79

8-
It is recommended that you store all dependency information in a **pyproject.toml** file (with a few caveats).
10+
It is recommended that you store all dependency information in a pyproject.toml file
11+
(with a few caveats).
912

10-
This ensures that all of the metadata associated with your package is declared in a single place, making it simpler for users and contributors to understand your package infrastructure.
13+
This ensures that all of the metadata associated with your package is declared
14+
in a single place, making it simpler for users and contributors to understand
15+
your package infrastructure.
1116

1217
## Direct project dependencies
1318

0 commit comments

Comments
 (0)