.PHONY: install run test lint

install:
	pip install -r requirements.txt

run:
	python -m example

test:
	pytest

lint:
	ruff check .
