Chris Kay | ed0c801 | 2025-01-28 18:04:11 +0000 | [diff] [blame] | 1 | [tool.poetry] |
| 2 | name = "memory" |
| 3 | version = "0.1.0" |
| 4 | description = "A tool for analysis of static memory consumption by TF-A images" |
| 5 | authors = ["Chris Kay <chris.kay@arm.com>", "Harrison Mutai <harrison.mutai@arm.com>"] |
| 6 | license = "BSD-3-Clause" |
| 7 | packages = [{include = "memory", from = "src"}] |
| 8 | |
| 9 | [tool.poetry.dependencies] |
| 10 | anytree = "^2.8.0" |
| 11 | click = "^8.1.3" |
| 12 | prettytable = "^3.5.0" |
| 13 | pyelftools = "^0.29.0" |
| 14 | python = "^3.8.0" |
| 15 | |
| 16 | [tool.poetry.scripts] |
| 17 | memory = "memory.memmap:main" |
| 18 | |
| 19 | [build-system] |
| 20 | requires = ["poetry-core"] |
| 21 | build-backend = "poetry.core.masonry.api" |