core-lightning/contrib/pyln-proto/pyproject.toml
Rusty Russell 7c2c100145 pyln: results of make update-pyln-versions NEW_VERSION=0.12.0
But I had to make the pyln-proto requirement of pyln-client less
strict.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-09-22 11:41:11 +02:00

26 lines
738 B
TOML

[tool.poetry]
name = "pyln-proto"
version = "0.12.0"
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.7"
base58 = "^2.1.1"
bitstring = "^3.1.9"
coincurve = "^17.0.0"
cryptography = "^36.0.1"
PySocks = "^1.7.1"
[tool.poetry.dev-dependencies]
pytest = "^7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"