aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 80c28bfd898fe15a22c371f7efa859816a8974db (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
30
31
32
[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>=0.3.1",
    "textual>=8",
    "pygments>=2",  # Used directly for pseudocode highlighting.
]

[project.optional-dependencies]
dev = ["pytest>=8"]
# The graph view's SESE layout engine (`e` in graph mode) is optional: without
# it, layout falls back to the pure-python engine. It is deliberately NOT listed
# as a dependency -- PyPI's pytriskel has no wheel for current Pythons, no sdist,
# and a binding bug that makes edge routes unreachable. Install our fork:
#     uv pip install ~/dev/triskel/bindings/python
# See docs/TRISKEL_EVAL.md and ~/dev/triskel/PATCHES.md.

[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"]