-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add requirements.txt and update readme in wheel
- Loading branch information
1 parent
95d3e81
commit 0f2ce89
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |