.PHONY: build doc test ativar-venv

build:
	maturin develop

doc:
	mkdocs serve

test:
	pytest --cov

ativar-venv:
	source .venv/bin/activate
