From b45ff860619c15633b0e5e8e19d733c13237f97e Mon Sep 17 00:00:00 2001 From: Kharec Date: Sun, 14 Dec 2025 09:34:47 +0100 Subject: [PATCH] build: add httpx dependency --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 145247e..a9729d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,4 +4,8 @@ version = "0.1.0" description = "An Audible TUI client" readme = "README.md" requires-python = ">=3.13" -dependencies = ["audible>=0.10.0", "textual>=6.7.1"] +dependencies = [ + "audible>=0.10.0", + "httpx>=0.28.1", + "textual>=6.7.1", +]