Skip to content

Commit

Permalink
docs: update Python tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamConnors committed Nov 11, 2024
1 parent ca3b195 commit 286685c
Showing 1 changed file with 12 additions and 27 deletions.
39 changes: 12 additions & 27 deletions docs/tutorials/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,22 @@ In this tutorial, we will use the `pyproject.toml` format because it is the most

## Let's get started

Let's start out by making a directory and creating a new `pyproject.toml` file.
Let's start out by creating a new project that uses a `pyproject.toml` file.

```shell
pixi init pixi-py --format pyproject
```

This gives you the following pyproject.toml:
This creates a project with the following structure:

```shell
├── src
│ └── pixi_py
│ └── __init__.py
└── pyproject.toml
```

The `pyproject.toml` for the project looks like this:

```toml
[project]
Expand All @@ -49,32 +58,8 @@ pixi-py = { path = ".", editable = true }
[tool.pixi.tasks]
```

Let's add the Python project to the tree:

=== "Linux & macOS"
```shell
cd pixi-py # move into the project directory
mkdir pixi_py
touch pixi_py/__init__.py
```

=== "Windows"
```shell
cd pixi-py
mkdir pixi_py
type nul > pixi_py\__init__.py
```

We now have the following directory structure:

```shell
.
├── pixi_py
│   └── __init__.py
└── pyproject.toml
```
This project uses a src-layout, but pixi supports both [flat- and src-layouts](https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/#src-layout-vs-flat-layout).

We've used a flat-layout here but pixi supports both [flat- and src-layouts](https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/#src-layout-vs-flat-layout).

### What's in the `pyproject.toml`?

Expand Down

0 comments on commit 286685c

Please sign in to comment.