mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-04 19:16:23 +01:00
Turns out that the pyln-proto dependency in the bolt packages is only needed for testing, not for production. Making it a dev-dependency means it isn't considered in resolution anymore. Since the bolt, testing and client packages are to be used outside from the project we can't use relative dependencies either, so make then dependent on the version on PyPI. This also means we had to push a couple of updated to PyPI. Changelog-None
25 lines
723 B
TOML
25 lines
723 B
TOML
[tool.poetry]
|
|
name = "pyln-proto"
|
|
version = "0.10.2.post1"
|
|
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"
|
|
|
|
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"
|