From f3e2da9811a7b513cf21d61f599737845807066e Mon Sep 17 00:00:00 2001 From: Jan Scheffler Date: Tue, 24 Feb 2026 07:02:29 +0100 Subject: [PATCH] fix: rename executable to match package name Rename script entry from `qodev-gitlab` to `qodev-gitlab-cli` so that `uvx qodev-gitlab-cli` works without the `--from` workaround. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e51c167..10fc142 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ dev = ["pytest>=9.0", "pytest-mock>=3.15", "ruff>=0.15", "mypy>=1.13.0"] [project.scripts] -qodev-gitlab = "qodev_gitlab_cli.app:main" +qodev-gitlab-cli = "qodev_gitlab_cli.app:main" [project.urls] Homepage = "https://github.com/qodevai/gitlab-cli"