# mise: the single committed source of truth for this project's toolchain. # mise install – install the pinned tools below # mise run deps – install python deps (Pillow) into .venv [tools] node = "24.16.0" pnpm = "11.5.2" python = "3.14" uv = "0.11" [env] # auto-create AND auto-activate .venv (built by uv; --seed gives it pip) _.python.venv = { path = ".venv", create = true, uv_create_args = ["--seed"] } [tasks.deps] description = "Install python deps (Pillow -> shrinko8 png export) into .venv" run = "uv pip install -r requirements.txt"