1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/core/tools/pyproject.toml
matejcik 0ce00cbdb6 feat(core/tools): create a poetry-installable package from some cli tools
so that we can have them available globally inside the poetry shell
2024-08-28 16:15:10 +02:00

21 lines
555 B
TOML

[tool.poetry]
name = "trezor_core_tools"
version = "0.1.0"
description = "Collection of CLI tools for trezor-core development"
authors = ["matejcik <jan.matejek@satoshilabs.com>"]
license = "GPLv3+"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
trezor = "^0.13.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
headertool = "trezor_core_tools.headertool:cli"
layout_parser = "trezor_core_tools.layout_parser:main"
combine_firmware = "trezor_core_tools.combine_firmware:main"