@@ -85,7 +85,7 @@ command, start with `$`. You can change it with `prompt_literal_start` option.
8585
8686=== "HTML"
8787 <!-- termynal -->
88-
88+
8989 ```
9090 > some longish command with \
9191 many \
@@ -134,51 +134,63 @@ tool's help looks like this:
134134 <!-- termynal -->
135135
136136 ```
137- $ poetry --help
138-
139- Description:
140- Lists commands.
141-
142- Usage:
143- list [options] [--] [<namespace>]
144-
145- Arguments:
146- namespace The namespace name
147-
148- Options:
149- -h, --help Display help for the given command.
150- When no command is given display help
151- for the list command.
152- -q, --quiet Do not output any message.
153- -V, --version Display this application version.
154- --ansi Force ANSI output.
155- --no-ansi Disable ANSI output.
156- -n, --no-interaction Do not ask any interactive question.
157- --no-plugins Disables plugins.
158- --no-cache Disables Poetry source caches.
159- -C, --directory=DIRECTORY The working directory for the Poetry
160- command (defaults to the current
161- working directory).
162- -v|vv|vvv, --verbose Increase the verbosity of messages:
163- 1 for normal output,
164- 2 for more verbose output and
165- 3 for debug.
166-
167- Help:
168- The list command lists all commands:
169-
170- poetry list
171-
172- You can also display the commands for a specific namespace:
173-
174- poetry list test
137+ $ uv -h
138+
139+ An extremely fast Python package manager.
140+
141+ Usage: uv [OPTIONS] <COMMAND>
142+
143+ Commands:
144+ run Run a command or script
145+ init Create a new project
146+ add Add dependencies to the project
147+ remove Remove dependencies from the project
148+ sync Update the project's environment
149+ lock Update the project's lockfile
150+ export Export the project's lockfile to an alternate format
151+ tree Display the project's dependency tree
152+ tool Run and install commands provided by Python packages
153+ python Manage Python versions and installations
154+ pip Manage Python packages with a pip-compatible interface
155+ venv Create a virtual environment
156+ build Build Python packages into source distributions and wheels
157+ publish Upload distributions to an index
158+ cache Manage uv's cache
159+ self Manage the uv executable
160+ version Display uv's version
161+ help Display documentation for a command
162+
163+ Cache options:
164+ -n, --no-cache Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation [env: UV_NO_CACHE=]
165+ --cache-dir <CACHE_DIR> Path to the cache directory [env: UV_CACHE_DIR=]
166+
167+ Python options:
168+ --python-preference <PYTHON_PREFERENCE> Whether to prefer uv-managed or system Python installations [env: UV_PYTHON_PREFERENCE=] [possible values: only-managed, managed, system, only-system]
169+ --no-python-downloads Disable automatic downloads of Python. [env: "UV_PYTHON_DOWNLOADS=never"]
170+
171+ Global options:
172+ -q, --quiet Do not print any output
173+ -v, --verbose... Use verbose output
174+ --color <COLOR_CHOICE> Control colors in output [default: auto] [possible values: auto, always, never]
175+ --native-tls Whether to load TLS certificates from the platform's native certificate store [env: UV_NATIVE_TLS=]
176+ --offline Disable network access
177+ --allow-insecure-host <ALLOW_INSECURE_HOST> Allow insecure connections to a host [env: UV_INSECURE_HOST=]
178+ --no-progress Hide all progress outputs [env: UV_NO_PROGRESS=]
179+ --directory <DIRECTORY> Change to the given directory prior to running the command
180+ --project <PROJECT> Run the command within the given project directory
181+ --config-file <CONFIG_FILE> The path to a `uv.toml` file to use for configuration [env: UV_CONFIG_FILE=]
182+ --no-config Avoid discovering configuration files (`pyproject.toml`, `uv.toml`) [env: UV_NO_CONFIG=]
183+ -h, --help Display the concise help for this command
184+ -V, --version Display the uv version
185+
186+ Use `uv help` for more details.
175187
176188 ```
177189
178190=== "Markdown"
179191 ````
180192 ```
181- $ poetry --help
193+ $ uv -h
182194
183195 ...
184196 ```
0 commit comments