arm-trusted-firmware/tools/memory/pyproject.toml
Chris Kay ed0c801fc6 refactor(memmap): migrate to Poetry
This change refactors the memmap tool into a Poetry project, with its
own dependencies. You can continue to run it manually with:

    poetry run memory <args>

Change-Id: I346283df1b8bfad4babc1f5a3861dab94d4a006a
Signed-off-by: Chris Kay <chris.kay@arm.com>
2025-02-27 15:32:05 +00:00

21 lines
554 B
TOML

[tool.poetry]
name = "memory"
version = "0.1.0"
description = "A tool for analysis of static memory consumption by TF-A images"
authors = ["Chris Kay <chris.kay@arm.com>", "Harrison Mutai <harrison.mutai@arm.com>"]
license = "BSD-3-Clause"
packages = [{include = "memory", from = "src"}]
[tool.poetry.dependencies]
anytree = "^2.8.0"
click = "^8.1.3"
prettytable = "^3.5.0"
pyelftools = "^0.29.0"
python = "^3.8.0"
[tool.poetry.scripts]
memory = "memory.memmap:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"