setup:
	python3 -m venv venv && \
	venv/bin/pip install --upgrade pip && \
	venv/bin/pip install -e .[dev]

test:
	venv/bin/pytest
