2025-08-03 08:01:06 +05:30
|
|
|
[project]
|
2022-01-14 13:49:56 +01:00
|
|
|
name = "msggen"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "A utility to transform wire messages and JSON-RPC messages to arbitrary target languages."
|
2025-08-03 08:01:06 +05:30
|
|
|
authors = [{ name = "Christian Decker", email = "decker@blockstream.com" }]
|
|
|
|
|
license = { text = "BSD-MIT" }
|
2025-09-29 16:54:25 +02:00
|
|
|
requires-python = ">=3.9,<4.0"
|
2025-08-03 08:01:06 +05:30
|
|
|
dependencies = []
|
2022-01-14 13:49:56 +01:00
|
|
|
|
2025-08-03 08:01:06 +05:30
|
|
|
[dependency-groups]
|
2025-09-29 16:54:25 +02:00
|
|
|
dev = ["pytest>=8.0.0"]
|
2025-08-03 08:01:06 +05:30
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
msggen = "msggen.__main__:main"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
2023-12-05 14:03:36 +01:00
|
|
|
include = ["msggen/schema.json"]
|
|
|
|
|
|
|
|
|
|
|
2022-01-14 13:49:56 +01:00
|
|
|
[tool.poetry.dependencies]
|
2025-09-29 16:54:25 +02:00
|
|
|
python = "^3.9"
|
2022-01-14 13:49:56 +01:00
|
|
|
|
2025-05-01 13:17:51 -05:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-01-14 13:49:56 +01:00
|
|
|
pytest = "^6.2.5"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
2025-08-03 08:01:06 +05:30
|
|
|
requires = ["hatchling>=1.0.0"]
|
|
|
|
|
build-backend = "hatchling.build"
|