blob: f50c26afc722eaa6342dc30a8cdb6ccacbf9c819 [file] [log] [blame]
Chris Kayed0c8012025-01-28 18:04:11 +00001[tool.poetry]
2name = "memory"
3version = "0.1.0"
4description = "A tool for analysis of static memory consumption by TF-A images"
5authors = ["Chris Kay <chris.kay@arm.com>", "Harrison Mutai <harrison.mutai@arm.com>"]
6license = "BSD-3-Clause"
7packages = [{include = "memory", from = "src"}]
8
9[tool.poetry.dependencies]
10anytree = "^2.8.0"
11click = "^8.1.3"
12prettytable = "^3.5.0"
13pyelftools = "^0.29.0"
14python = "^3.8.0"
15
16[tool.poetry.scripts]
17memory = "memory.memmap:main"
18
Chris Kay1bed7702025-04-01 17:20:56 +010019[tool.poetry.group.dev]
20optional = true
21
22[tool.poetry.group.dev.dependencies]
23ruff = "^0.11.2"
Chris Kay6acd79a2025-04-17 16:53:32 +010024pyright = "^1.1.399"
Chris Kay1bed7702025-04-01 17:20:56 +010025
Chris Kayed0c8012025-01-28 18:04:11 +000026[build-system]
27requires = ["poetry-core"]
28build-backend = "poetry.core.masonry.api"