diff --git a/wheel/README.md b/wheel/README.md index abb5d1ba4..3b55f61d7 100644 --- a/wheel/README.md +++ b/wheel/README.md @@ -1 +1,12 @@ The `chia_rs` wheel contains python bindings for code from the `chia` crate. + +To run the tests: +``` +cd wheel +python -m venv venv +. ./venv/bin/activate +python -m pip install -r requirements.txt +maturin develop +python -m pytest ../tests +``` + diff --git a/wheel/requirements.txt b/wheel/requirements.txt new file mode 100644 index 000000000..671afc2e3 --- /dev/null +++ b/wheel/requirements.txt @@ -0,0 +1,6 @@ +iniconfig>=2.0.0 +maturin>=1.4.0 +chia-blockchain>=2.1.4 +packaging>=23.2 +pluggy>=1.4.0 +pytest>=8.0.1 \ No newline at end of file