mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
722f2911df
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
21 lines
426 B
TOML
21 lines
426 B
TOML
[tool.poetry]
|
|
name = "pyln-bolt4"
|
|
version = "1.0.2.187.post0"
|
|
description = "A pure python implementation of BOLT4"
|
|
authors = ["Rusty Russell <rusty@blockstream.com>"]
|
|
license = "MIT"
|
|
|
|
packages = [
|
|
{ include = "pyln/spec/bolt4" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pyln-proto = "^0.10.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|