core-lightning/contrib/pyln-client/pyproject.toml
Rusty Russell 0c20cc70ab pyln-client, pyln-proto, pyln-testing: update to new versions.
I actually did this manually to send 23.08 to Pypi a few days ago, as it's
required for clnrest.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2023-08-03 09:05:59 +09:30

26 lines
609 B
TOML

[tool.poetry]
name = "pyln-client"
version = "23.08"
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.8"
pyln-proto = ">=23"
pyln-bolt7 = ">=1.0"
[tool.poetry.dev-dependencies]
pytest = "^7"
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"