core-lightning/contrib/pyln-proto/pyproject.toml
Vincenzo Palazzo dd7393e6bb proto: update the bitstring dep
This is an alternative version to [1] that
update only the necessary information around our codebase
to upgrade the bitstring package.

This upgrade is necessary for the user of our package that
will find conflics in their codebase about packages version.

[1] https://github.com/ElementsProject/lightning/pull/6585

Co-Developed-by: @dni
Chanegelog-None
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
2023-10-24 11:49:32 +10:30

26 lines
725 B
TOML

[tool.poetry]
name = "pyln-proto"
version = "23.08"
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 = "^18"
cryptography = "^41"
PySocks = "^1"
[tool.poetry.dev-dependencies]
pytest = "^7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"