aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..e491542
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,20 @@
+[project]
+name = "idatui"
+version = "0.0.1"
+description = "A minimal keyboard-first TUI frontend for IDA Pro over the ida-pro-mcp (idalib) server."
+requires-python = ">=3.11"
+# The client layer is intentionally stdlib-only (urllib/http.client), matching the
+# ida-mcp skill philosophy: no install needed to talk to the server.
+dependencies = []
+
+[project.optional-dependencies]
+# The TUI layer (added in a later phase) pulls in Textual.
+tui = ["textual>=0.60"]
+dev = ["pytest>=8"]
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[tool.hatch.build.targets.wheel]
+packages = ["idatui"]