aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 30f8cc2af994bff047618f79b078d3b0a13ea8ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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 pulls in Textual; the client/domain layers are stdlib-only.
tui = ["textual>=8", "pygments>=2"]  # pygments ships with rich; explicit for the C lexer
dev = ["pytest>=8"]

[project.scripts]
idatui = "idatui.launch:main"
ida-tui = "idatui.launch:main"  # caveman one-shot: `ida-tui foo.elf`

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["idatui"]