blob: c2fdfcb8a7b7ea04d17d4a95a03b59790d50ec59 [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
19[build-system]
20requires = ["poetry-core"]
21build-backend = "poetry.core.masonry.api"