From 014e398effc824583f13e3be41c975e0c967a5bd Mon Sep 17 00:00:00 2001 From: jfs Date: Mon, 20 Jan 2025 18:43:46 +0300 Subject: [PATCH] Support `uvx toolong` It is an alternative to `uvx --from toolong tl` for those of us who forgets that it should be called `tl`, not `toolong`. It fixes: ``` shell $ uvx toolong The executable `toolong` was not found. warning: An executable named `toolong` is not provided by package `toolong`. The following executables are provided by `toolong`: - tl Consider using `uvx --from toolong ` instead. ``` --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 885ec5f..850f88d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ textual-dev = "^1.4.0" [tool.poetry.scripts] tl = "toolong.cli:run" +toolong = "toolong.cli:run" [build-system] requires = ["poetry-core"]