diff --git a/docs/guides/install-python.md b/docs/guides/install-python.md index 9cefc830ccb4..bc3555cdcd2a 100644 --- a/docs/guides/install-python.md +++ b/docs/guides/install-python.md @@ -1,3 +1,10 @@ +--- +title: Installing and managing Python +description: + A guide to using uv to install Python, including requesting specific versions, automatic + installation, viewing installed versions, and more. +--- + # Installing Python If Python is already installed on your system, uv will diff --git a/docs/guides/projects.md b/docs/guides/projects.md index a9d219162b55..aff63e72b5a2 100644 --- a/docs/guides/projects.md +++ b/docs/guides/projects.md @@ -1,3 +1,10 @@ +--- +title: Working on projects +description: + A guide to using uv to create and manage Python projects, including adding dependencies, running + commands, and building publishable distributions. +--- + # Working on projects uv supports managing Python projects, which define their dependencies in a `pyproject.toml` file. diff --git a/docs/guides/publish.md b/docs/guides/publish.md index d429ea26ba4a..9e0fb114d100 100644 --- a/docs/guides/publish.md +++ b/docs/guides/publish.md @@ -1,3 +1,8 @@ +--- +title: Publishing a package +description: A guide to using uv to build and publish Python packages to a package index, like PyPI. +--- + # Publishing a package uv supports building Python packages into source and binary distributions via `uv build` and diff --git a/docs/guides/scripts.md b/docs/guides/scripts.md index c6d10af63fde..1dbf91b3aa1e 100644 --- a/docs/guides/scripts.md +++ b/docs/guides/scripts.md @@ -1,3 +1,10 @@ +--- +title: Running scripts +description: + A guide to using uv to run Python scripts, including support for inline dependency metadata, + reproducible scripts, and more. +--- + # Running scripts A Python script is a file intended for standalone execution, e.g., with `python