.PHONY: install lint format type test all clean

install:
	uv pip install -e ".[dev]"

lint:
	ruff check .

format:
	ruff format .

type:
	mypy scoreflow/

test:
	pytest -v

all: install lint type test

clean:
	rm -rf build/ dist/ *.egg-info .mypy_cache .ruff_cache .pytest_cache
	find . -type d -name __pycache__ -exec rm -rf {} +
