From ab2e1905c4a74968c6208426b4a2add54623b4df Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 24 Jan 2025 09:53:20 -0500 Subject: [PATCH] Use `uv init --lib` in tutorial (#15718) ## Summary Closes https://github.com/astral-sh/uv/issues/10933. --- docs/tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 2f7c821bbb..5d241d85f7 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -8,13 +8,14 @@ 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 +$ uv init --lib numbers ``` This command creates a Python project with the following structure: ```text numbers + ├── README.md ├── pyproject.toml └── src └── numbers