.PHONY: test lint format run

test:
	pytest -q

lint:
	ruff check src tests

format:
	ruff format src tests

run:
	python3 -m neurovault --help
