1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Build only a source distribution (sdist) without compiling.
Building a source distribution requires a pyproject.toml with a `[build-system]` table.
This command is a workaround for [pypa/pip#6041](https://github.com/pypa/pip/issues/6041)
Usage: maturin[EXE] sdist [OPTIONS]
Options:
-m, --manifest-path <MANIFEST_PATH>
The path to the Cargo.toml
-v, --verbose...
Use verbose output.
* Default: Show build information and `cargo build` output. * `-v`: Use `cargo build -v`.
* `-vv`: Show debug logging and use `cargo build -vv`. * `-vvv`: Show trace logging.
You can configure fine-grained logging using the `RUST_LOG` environment variable.
(<https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives>)
-o, --out <OUT>
The directory to store the built wheels in. Defaults to a new "wheels" directory in the
project's target directory
-h, --help
Print help (see a summary with '-h')
|