check:
    uv run ruff format src/
    uv run ruff check src/
    uv run ty check src/
    uv run pytest

run:
    uv run lowhum

build:
    uv build

clean:
    rm -rf .venv build dist .ruff_cache .pytest_cache .mypy_cache
    find . -type d -name "__pycache__" -prune -exec rm -rf {} +
