Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ You should see the plot of a \[y = x^3\] function. You may lock the dependency v
uv lock
```

## uv Tipps
## uv tips

The project uses a `src/` layout, which is the default for `uv` projects.

Expand All @@ -132,4 +132,9 @@ You can lock your script's dependencies for reproducibility:
uv lock --script main.py
```

For a new project, you can quickly setup the project structure with the auxilliary files, including the .git folder, using:
```bash
uv init
```

For many more [`uv`](https://github.com/astral-sh/uv) tipps and tricks we refer to the official documentation.