mirror of
https://github.com/YuuKi-OS/Yuu-Box.git
synced 2026-02-18 21:51:10 +00:00
pos nomas
This commit is contained in:
20
Makefile
Normal file
20
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user