aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e491542..cb23cfa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,10 +8,13 @@ requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
-# The TUI layer (added in a later phase) pulls in Textual.
-tui = ["textual>=0.60"]
+# The TUI layer pulls in Textual; the client/domain layers are stdlib-only.
+tui = ["textual>=8"]
dev = ["pytest>=8"]
+[project.scripts]
+idatui = "idatui.tui:main"
+
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"