From bb704d24eacb503589b84f8a005cde0da4dc3800 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Mon, 12 Jan 2026 16:55:46 -0800 Subject: [PATCH] Add script entry point for uvx installation Fixes "Package does not provide any executables" error when running uvx git+https://... Co-Authored-By: Claude Opus 4.5 --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4a13ad9..4e8f136 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,9 @@ authors = [ requires-python = ">=3.14" dependencies = ["typer>=0.9.0"] +[project.scripts] +mcquack = "mcquack:app" + [build-system] requires = ["hatchling"] build-backend = "hatchling.build"