core-lightning/contrib/pyln-client/pyproject.toml
Christian Decker 9f1e1ada2a py: Update dependencies and relax constraints
We were being very restrictive when describing the dependencies, so let's
relax them a bit.
2023-06-18 11:00:32 +09:30

25 lines
609 B
TOML

[tool.poetry]
name = "pyln-client"
version = "23.05"
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 = ">=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"