pyo3/examples/setuptools-rust-starter
Adam Reichold 39d19113fa Remove stale references to tox.ini from template substitution scripts. 2023-03-05 09:17:34 +01:00
..
.template Remove stale references to tox.ini from template substitution scripts. 2023-03-05 09:17:34 +01:00
setuptools_rust_starter examples: export __doc__ in example projects 2021-10-01 09:05:58 +01:00
src wrap_x: change macros back to `macro_rules!` 2022-05-14 20:42:07 +01:00
tests examples: export __doc__ in example projects 2021-10-01 09:05:58 +01:00
Cargo.toml examples: make Cargo.toml files more uniform 2021-12-15 08:28:25 +00:00
MANIFEST.in examples: maturin and setuptools_rust examples 2021-04-03 11:59:41 +01:00
README.md Switch from tox to nox 2022-01-17 00:24:33 +08:00
cargo-generate.toml Use `--no-build-isolation` 2022-01-17 10:02:03 +08:00
noxfile.py ci: build all examples in debug 2022-01-23 08:41:39 +00:00
pyproject.toml examples: add cargo-generate configuration 2021-12-15 08:11:46 +00:00
requirements-dev.txt examples: use setuptools-rust 1.0.0 2021-11-21 20:39:52 +00:00
setup.cfg ci: build all examples in debug 2022-01-23 08:41:39 +00:00
setup.py ci: build all examples in debug 2022-01-23 08:41:39 +00:00

README.md

setuptools-rust-starter

An example of a basic Python extension module built using PyO3 and setuptools_rust.

Building and Testing

To build this package, first install setuptools_rust:

pip install setuptools_rust

To build and test use python setup.py develop:

pip install -r requirements-dev.txt
python setup.py develop && pytest

Alternatively, install nox and run the tests inside an isolated environment:

nox

Copying this example

Use cargo-generate:

$ cargo install cargo-generate
$ cargo generate --git https://github.com/PyO3/pyo3 examples/setuptools-rust-starter

(cargo generate will take a little while to clone the PyO3 repo first; be patient when waiting for the command to run.)