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

25
build.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
set -e
echo "Building YuuBox (Rust + Python)"
echo ""
echo "Step 1: Build Rust core..."
cd yuubox-core
cargo build --release
cd ..
echo ""
echo "Step 2: Build Python wheel with maturin..."
maturin build --release
echo ""
echo "Step 3: Install locally..."
pip install target/wheels/*.whl
echo ""
echo "✅ Build complete!"
echo ""
echo "Usage:"
echo " yuubox run script.py"
echo " python -c 'from yuubox import YuuBox; box = YuuBox()'"