Skip to content

Commit 7a326e2

Browse files
Update project_metadata.md
1 parent 9c6912f commit 7a326e2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

episodes/project_metadata.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,19 @@ exercises: 10
1818
::::::::::::::::::::::::::::::::::::::::::::::::
1919

2020
## Introduction
21+
22+
In the previos lesson, we touched upon `pixi.toml` briefly. In this lesson, we will learn about `pyproject.toml`.
23+
`pyproject.toml` is the most common format for Python projects.
24+
Please not, for a project maintained using pixi, either of the 2 i.e. `pyproject.toml` or `pixi.toml` are fine. You just need to take case of some specific syntaxes.
25+
26+
To add `pyproject.toml` file, we give the following command :
27+
```bash
28+
pixi init --format pyproject
29+
```
30+
31+
## Whats inside `pyproject.toml`
32+
33+
- Manifest metadata
34+
- Editable project install
35+
- Dependency handling
36+
- Tasks

0 commit comments

Comments
 (0)