.PHONY: install test lint clean

install:
	pip install -e .

test:
	pytest tests/ -v

lint:
	ruff check src/ tests/

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