39cac9075b
* Add decorator example crate and split off chapter * Move not-examples to their own folder * Add some readme's * Make black happy * Make clippy happy * Add decorator example crate and split off chapter * Fix ci * Add empty workspace key * Try fix ci * fix ci * reuse target dir for examples CI * add pytests folder to makefile recipes * fix ci, try 2 * add missing pyproject.toml * remove TOX_TESTENV_PASSENV from Makefile Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com> |
||
---|---|---|
.. | ||
setuptools_rust_starter | ||
src | ||
tests | ||
Cargo.toml | ||
MANIFEST.in | ||
README.md | ||
requirements-dev.txt | ||
setup.py | ||
tox.ini |
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 tox and run the tests inside an isolated environment:
tox -e py