Document 'uv' package for project setup

I just recently learned about `uv` and it would be great if newcomers were introduced to it.
This commit is contained in:
Mark Laurence Mejo 2026-05-02 16:20:22 +08:00 committed by GitHub
parent dcbede0cb0
commit 16f89bc51d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,6 +59,25 @@ versions that added necessary features. You should use the latest
versions of each.
uv
--------------------
`uv`_ is an extremely fast Python package and project manager.
It's a single tool that can manage dependencies and virtual environments.
Set up a new Flask project using `uv`
~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: text
$ uv init myproject
$ cd myproject
$ uv add flask
.. _uv: https://docs.astral.sh/uv/
Virtual environments
--------------------