blob: 943c1e1eba1b34b2a04db79fc7a93410b8b6383e (
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
25
26
27
28
29
|
[project]
name = "idatui"
version = "0.0.1"
description = "A keyboard-first TUI frontend for shared IDA Code Mode databases."
requires-python = ">=3.11"
# ida-codemode supplies GUI discovery, shared idalib workers, leases, and the
# execute_python/ida-domain database surface.
dependencies = [
"ida-codemode",
"textual>=8",
"pygments>=2", # Used directly for pseudocode highlighting.
]
[project.optional-dependencies]
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"]
[tool.uv.sources]
ida-codemode = { path = "../ida-codemode", editable = true }
|