core-lightning/contrib/pyln-proto/pyproject.toml
ShahanaFarooqui 52f9678deb meta: Update changelog for 24.08rc2
Release candidate 2 for v24.08
2024-08-15 21:20:35 -07:00

26 lines
728 B
TOML

[tool.poetry]
name = "pyln-proto"
version = "24.08rc2"
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 = ["Christian Decker <decker.christian@gmail.com>"]
license = "BSD-MIT"
readme = "README.md"
packages = [
{ include = "pyln/proto" },
]
[tool.poetry.dependencies]
python = "^3.8"
base58 = "^2.1.1"
bitstring = "^4.1.0"
coincurve = "^20"
cryptography = "^42"
PySocks = "^1"
[tool.poetry.dev-dependencies]
pytest = "^7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"