Compare commits

...

1 Commits

Author SHA1 Message Date
Charlie Marsh
4fd6f969e3 Use --lib in uv init in tutorial 2025-01-24 09:48:30 -05:00

View File

@@ -7,14 +7,15 @@ your project. For a more detailed overview, see [_Configuring Ruff_](configurati
To start, we'll initialize a project using [uv](https://docs.astral.sh/uv/):
```console
$ uv init numbers
```console/n
$ uv init --lib numbers
```
This command creates a Python project with the following structure:
```text
numbers
├── README.md
├── pyproject.toml
└── src
└── numbers