Files
palladum-lightning/contrib/pyln-proto/pyproject.toml
Sangbida Chaudhuri da7d3057ed Run version script for rc1.
Run version script
2025-08-19 16:46:29 +09:30

30 lines
782 B
TOML

[project]
name = "pyln-proto"
version = "25.09rc1"
description = "This package implements some of the Lightning Network protocol in pure python. It is intended for protocol testing and some minor tooling only. It is not deemed secure enough to handle any amount of real funds (you have been warned!)."
authors = [
{name = "Christian Decker", email = "decker.christian@gmail.com"}
]
license = {text = "BSD-MIT"}
readme = "README.md"
requires-python = ">=3.8,<4.0"
dependencies = [
"base58>=2.1.1",
"bitstring>=4.1.0",
"coincurve==20.0.0",
"cryptography>=42",
"PySocks>=1"
]
[dependency-groups]
dev = [
"pytest>=7.0.0"
]
[tool.hatch.build.targets.wheel]
packages = ["pyln"]
[build-system]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"