ManuBo's picture
v0.2.0: quality score and integration
b89a72f
Raw
History Blame Contribute Delete
322 Bytes
.PHONY: install dev test sample demo lint clean
install:
pip install -e .
dev:
pip install -e ".[dev]"
test:
pytest tests/ -v
sample:
python demo/generate_sample_data.py
demo:
streamlit run demo/app.py
clean:
rm -rf demo/sample_data/ build/ dist/ *.egg-info
find . -type d -name __pycache__ -exec rm -rf {} +