.PHONY: setup test-setup test lint typecheck build clean

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

test-setup:
	@echo "No additional test setup required"

test:
	pytest tests/

lint:
	ruff check src/ tests/

typecheck:
	mypy src/

build:
	python -m build

clean:
	rm -rf dist/ build/ src/*.egg-info
