aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 9802a8fa211f9808a42eb5d6653b66e67a022b82 (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
[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.tui:main"

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

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