Files
plugins/historian/pyproject.toml
Christian Decker 74594a5b6e gci: Add support for poetry / PEP 517 based plugins
We also migrate the `historian` plugin to show how this looks
like. Next up is migrating the individual plugins.
2022-04-28 12:57:06 +02:00

18 lines
427 B
TOML

[tool.poetry]
name = "cln-historian"
version = "0.1.0"
description = "A plugin to store historical Lightning Network gossip in a database."
authors = ["Christian Decker <decker@blockstream.io>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
pyln-client = "0.10.1"
[tool.poetry.dev-dependencies]
pyln-testing = "^0.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"