Files
plugins/autopilot/pyproject.toml
Christian Decker a1e3eb44d2 autopilot: Relax numpy dependency
It is not compatible across all python versions, so we need installation time resolution :-(
2023-01-01 17:14:05 +01:00

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"