test:
    uv run pytest tests

check:
  uv run ruff check --fix
  uv run pyright phylodata tests scripts

format:
  uv run ruff format

build:
    rm -rf dist
    uv build

publish:
    uv publish
