From 553f5cb4f75b0de2adde69e44923d3e19ead5d8c Mon Sep 17 00:00:00 2001 From: Kharec Date: Sat, 20 Dec 2025 22:53:00 +0100 Subject: [PATCH] build: add script entrypoint --- pyproject.toml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a9729d9..6ef7154 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,7 @@ version = "0.1.0" description = "An Audible TUI client" readme = "README.md" requires-python = ">=3.13" -dependencies = [ - "audible>=0.10.0", - "httpx>=0.28.1", - "textual>=6.7.1", -] +dependencies = ["audible>=0.10.0", "httpx>=0.28.1", "textual>=6.7.1"] + +[project.scripts] +auditui = "auditui.cli:main"