.PHONY: install dev test clean build install: pip install -e . dev: pip install -e ".[dev]" test: pytest tests/ clean: find . -type d -name __pycache__ -exec rm -rf {} + find . -type f -name "*.pyc" -delete rm -rf build/ dist/ *.egg-info build: python -m build