mirror of
https://github.com/aljazceru/plugins.git
synced 2025-12-24 08:34:18 +01:00
It is not compatible across all python versions, so we need installation time resolution :-(
31 lines
728 B
TOML
31 lines
728 B
TOML
[tool.poetry]
|
|
name = "cln-autopilot"
|
|
version = "0.1.0"
|
|
description = "Automatically manage lightning channels (OUTDATED)"
|
|
authors = ["Rene Pickhardt <@renepickhardt>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
pyln-client = "0.12.1"
|
|
dnspython = "^2.2.0"
|
|
numpy = [
|
|
{ version = "^1.24", python = ">=3.8,<3.12" },
|
|
{ version = "^1.19", python = "<3.8" }
|
|
]
|
|
networkx = [
|
|
{ version = "^2.8", python = ">=3.8" },
|
|
{ version = "^2.6", python = ">=3.7,<3.8" }
|
|
]
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pyln-testing = "0.12.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest-rerunfailures = "^10.3"
|
|
pytest-timeout = "^2.1.0"
|
|
pytest-xdist = "^3.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|