From 62ccbbff4ef3626714d0f522322153c8eece459f Mon Sep 17 00:00:00 2001 From: FishAlchemist <48265002+FishAlchemist@users.noreply.github.com> Date: Sun, 12 Jan 2025 21:03:30 +0800 Subject: [PATCH 1/3] Add meta titles to documents in guides, excluding integration documents. --- docs/guides/install-python.md | 7 +++++++ docs/guides/projects.md | 7 +++++++ docs/guides/publish.md | 5 +++++ docs/guides/scripts.md | 7 +++++++ docs/guides/tools.md | 5 +++++ 5 files changed, 31 insertions(+) diff --git a/docs/guides/install-python.md b/docs/guides/install-python.md index 9cefc830ccb4..92d4b1401924 100644 --- a/docs/guides/install-python.md +++ b/docs/guides/install-python.md @@ -1,3 +1,10 @@ +--- +title: Install and Manage Python +description: + Guide to install specific Python versions, manage existing installations, and automate downloads + with uv. +--- + # 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..2b44a9b57ade 100644 --- a/docs/guides/projects.md +++ b/docs/guides/projects.md @@ -1,3 +1,10 @@ +--- +title: Working on projects +description: + Guide to create, manage, and build Python projects with uv, including dependencies and + 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..c1314ecc70f5 100644 --- a/docs/guides/publish.md +++ b/docs/guides/publish.md @@ -1,3 +1,8 @@ +--- +title: Publishing a package +description: Guide to build and publish Python packages using uv +--- + # 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..ace2b943510b 100644 --- a/docs/guides/scripts.md +++ b/docs/guides/scripts.md @@ -1,3 +1,10 @@ +--- +title: Run Scripts +description: + Run Python scripts quickly and manage dependencies efficiently using uv. Learn about inline + metadata and more. +--- + # Running scripts A Python script is a file intended for standalone execution, e.g., with `python