You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package-structure-code/declare-dependencies.md
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,18 @@
1
1
# Declaring Development Dependencies - Python Packaging
2
2
3
-
## How to declare documentation, test and other deps
3
+
## How to declare documentation, test, and other dependencies
4
4
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.
7
9
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).
9
12
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
0 commit comments