pos nomas

This commit is contained in:
aguitauwu
2026-02-16 11:41:18 -06:00
parent d0d85c8fb5
commit 5a4b5b83dd
24 changed files with 1021 additions and 199 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
.PHONY: build dev install test clean
build:
maturin build --release
dev:
maturin develop
install:
pip install -e ".[dev]"
test:
pytest tests/
cargo test --manifest-path yuubox-core/Cargo.toml
clean:
rm -rf target dist build *.egg-info
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type f -name "*.pyc" -delete
find . -type f -name "*.so" -delete