aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: e4915427a1677debd5ce634f6f216432dc3e9362 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]