mirror of https://github.com/astral-sh/uv
Update README limitations (#363)
This commit is contained in:
parent
3c24301193
commit
4eed03d8e7
17
README.md
17
README.md
|
|
@ -31,9 +31,6 @@ with a minimal barrier to adoption. Try it today in lieu of `pip` and `pip-tools
|
||||||
|
|
||||||
Puffin does not yet support:
|
Puffin does not yet support:
|
||||||
|
|
||||||
- Source distributions
|
|
||||||
- VCS dependencies
|
|
||||||
- URL dependencies
|
|
||||||
- Windows
|
- Windows
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
|
|
@ -58,16 +55,24 @@ cargo run -p puffin-cli -- pip-sync requirements.txt
|
||||||
For more, see `cargo run -p puffin-cli -- --help`:
|
For more, see `cargo run -p puffin-cli -- --help`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Usage: puffin-cli <COMMAND>
|
Usage: puffin [OPTIONS] <COMMAND>
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
compile Compile a `requirements.in` file to a `requirements.txt` file
|
pip-compile Compile a `requirements.in` file to a `requirements.txt` file
|
||||||
sync Sync dependencies from a `requirements.txt` file
|
pip-sync Sync dependencies from a `requirements.txt` file
|
||||||
|
pip-uninstall Uninstall packages from the current environment
|
||||||
clean Clear the cache
|
clean Clear the cache
|
||||||
freeze Enumerate the installed packages in the current environment
|
freeze Enumerate the installed packages in the current environment
|
||||||
|
venv Create a virtual environment
|
||||||
|
add Add a dependency to the workspace
|
||||||
|
remove Remove a dependency from the workspace
|
||||||
help Print this message or the help of the given subcommand(s)
|
help Print this message or the help of the given subcommand(s)
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
-q, --quiet Do not print any output
|
||||||
|
-v, --verbose Use verbose output
|
||||||
|
-n, --no-cache Avoid reading from or writing to the cache
|
||||||
|
--cache-dir <CACHE_DIR> Path to the cache directory [env: PUFFIN_CACHE_DIR=]
|
||||||
-h, --help Print help
|
-h, --help Print help
|
||||||
-V, --version Print version
|
-V, --version Print version
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue