From f76781cf8e7dd5d03748bfd0d43192a1907bb5da Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 24 Oct 2024 15:56:54 -0500 Subject: [PATCH] Add reference to `uv build` and `uv publish` in the landing pages (#8542) I don't include the `uv build` and `uv publish` commands in the `uv init` project because they're not distributable by default :/ --- README.md | 6 +++++- docs/index.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 186c4af7e..f870b0650 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,8 @@ An extremely fast Python package and project manager, written in Rust. ## Highlights -- 🚀 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `virtualenv`, and more. +- 🚀 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `twine`, `virtualenv`, + and more. - ⚡️ [10-100x faster](https://github.com/astral-sh/uv/blob/main/BENCHMARKS.md) than `pip`. - 🐍 [Installs and manages](#python-management) Python versions. - 🛠️ [Runs and installs](#tool-management) Python applications. @@ -101,6 +102,9 @@ All checks passed! See the [project documentation](https://docs.astral.sh/uv/guides/projects/) to get started. +uv also supports building and publishing projects, even if they're not managed with uv. See the +[publish guide](./guides/publish.md) to learn more. + ### Tool management uv executes and installs command-line tools provided by Python packages, similar to `pipx`. diff --git a/docs/index.md b/docs/index.md index 202764ea4..7f4e34035 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,7 +16,8 @@ An extremely fast Python package and project manager, written in Rust. ## Highlights -- 🚀 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `virtualenv`, and more. +- 🚀 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `twine`, `virtualenv`, + and more. - ⚡️ [10-100x faster](https://github.com/astral-sh/uv/blob/main/BENCHMARKS.md) than `pip`. - 🐍 [Installs and manages](#python-management) Python versions. - 🛠️ [Runs and installs](#tool-management) Python applications. @@ -83,6 +84,9 @@ All checks passed! See the [project guide](./guides/projects.md) to get started. +uv also supports building and publishing projects, even if they're not managed with uv. See the +[publish guide](./guides/publish.md) to learn more. + ## Tool management uv executes and installs command-line tools provided by Python packages, similar to `pipx`.