mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
0c20cc70ab
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>
26 lines
609 B
TOML
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"
|