pyo3-setup ![Crates.io Badge] ![License Badge]

Quickly up a Rust PyO3 project with setuptools-rust.

Installation

From crates.io

The best way to install is with cargo:

sh $ cargo install pyo3-setup --locked

The executable will then be available to run anywhere.

Locally

You can also install from a cloned repository:

sh $ cargo install --path .

Use

To set up a new project, run pyo3-setup path/to/project. The project name will be inferred from the last folder in the path.

More information is available in the help menu with pyo3-setup --help:

```text USAGE: pyo3-setup [FLAGS] [OPTIONS]

FLAGS: -h, --help Prints help information --non-interactive Don't require user input to confirm before using default values -V, --version Prints version information

OPTIONS: --author The author name to use. Defaults to name configured via Git --email The author email to use. Defaults to email configured via Git --desc The description of the project -n, --name The name of the project. Inferred from the path by default --pyo3-version The version of PyO3 to use. Defaults to the latest version --setuptools-rust-version The version of setuptools-rust to use [default: >=1] --setuptools-version The version of setuptools to use [default: >=59] --package-version The version of the package to set

ARGS: The path to the project ```

License

This project is licensed under the GNU General Public License, Version 3.0 (LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html). However, any generated files can be modified to your liking and licensed under whatever license you choose.