From 7574239cdb1da54a2f365466a4ab0374c30471c5 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 26 Jul 2025 17:17:26 +0200 Subject: [PATCH] add dependencies for tui, tui file --- pyproject.toml | 4 ++++ tui.py | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 tui.py diff --git a/pyproject.toml b/pyproject.toml index fca55e7..fc412b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,10 @@ dependencies = [ [dependency-groups] dev = ["bump-my-version>=0.32.1"] +terminal-ui = [ + "textual>=5.0.1", + "textual-dev>=1.7.0", +] test = ["pytest>=8.3.4", "pytest-cov>=6.1.1"] [tool.uv.sources] diff --git a/tui.py b/tui.py new file mode 100644 index 0000000..e8f25e1 --- /dev/null +++ b/tui.py @@ -0,0 +1,2 @@ +from textual.app import App, ComposeResult +