maturin build | Build a Python package |
maturin develop | Build a Python package in development mode |
maturin publish | Publish a Python package to PyPI |
maturin sdist | Build a source distribution |
maturin wheel | Build a wheel |
maturin develop --release | Build a Python package in development mode with optimizations |
maturin build --release | Build a Python package with optimizations |
maturin publish --username <username> --password <password> | Publish a Python package to PyPI |
maturin publish --username <username> --password <password> --repository-url <repository-url> | Publish a Python package to a custom PyPI repository |