core-lightning/contrib/pyln-client/pyproject.toml
Christian Decker 657b315f1c pyln: Bump versions to v0.12.1
This is just before the introduction of `get_json_id`, but has the
correct dependency constraints such that all packages can be updated
to >=v0.12 and we don't mix minor versions.
2022-09-26 22:06:05 +02:00

25 lines
616 B
TOML

[tool.poetry]
name = "pyln-client"
version = "0.12.1"
description = "Client library and plugin library for Core Lightning"
authors = ["Christian Decker <decker.christian@gmail.com>"]
license = "BSD-MIT"
readme = "README.md"
packages = [
{ include = "pyln/client" },
]
[tool.poetry.dependencies]
python = "^3.7"
pyln-proto = ">=0.12"
pyln-bolt7 = ">=1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pyln-bolt7 = { path = "../pyln-spec/bolt7", develop = true }
pyln-proto = { path = "../pyln-proto", develop = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"