Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add meta titles to documents in guides, excluding integration documents. #10539

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
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: 7 additions & 0 deletions docs/guides/install-python.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 7 additions & 0 deletions docs/guides/projects.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions docs/guides/publish.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 7 additions & 0 deletions docs/guides/scripts.md
Original file line number Diff line number Diff line change
@@ -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 <script>.py`. Using
Expand Down
7 changes: 7 additions & 0 deletions docs/guides/tools.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
title: Using tools
description:
A guide to using uv to run tools published as Python packages, including one-off invocations with
uvx, requesting specific tool versions, installing tools, upgrading tools, and more.
---

# Using tools

Many Python packages provide applications that can be used as tools. uv has specialized support for
Expand Down
Loading