2022-02-22 14:33:41 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "cln-meta-project"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Just a helper to get our python dependencies under control"
|
|
|
|
authors = ["Christian Decker <cdecker@blockstream.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
# Build dependencies belong here
|
2023-07-20 01:01:11 +02:00
|
|
|
python = "^3.8"
|
2023-06-16 13:46:33 +02:00
|
|
|
pyln-client = { path = "contrib/pyln-client", develop = true }
|
|
|
|
pyln-proto = { path = "contrib/pyln-proto", develop = true }
|
2023-09-07 21:00:31 +02:00
|
|
|
clnrest = { path = "plugins/clnrest", develop = true }
|
2022-02-22 14:33:41 +01:00
|
|
|
Mako = "^1.1.6"
|
|
|
|
websocket-client = "^1.2.3"
|
2023-06-16 13:46:33 +02:00
|
|
|
grpcio-tools = "^1"
|
|
|
|
grpcio = "^1"
|
2023-06-19 04:28:03 +02:00
|
|
|
# We want a specific version of protobuf to match CI's .github/scripts/setup.sh
|
|
|
|
protobuf = "4.21.12"
|
2023-07-15 03:28:50 +02:00
|
|
|
cryptography = "^41.0.2"
|
2022-02-22 14:33:41 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
# Test dependencies and inherited dependencies belong here
|
|
|
|
crc32c = "^2.2.post0" # Belongs to lnprototest
|
|
|
|
pytest-xdist = "^2.5.0"
|
|
|
|
pytest-test-groups = "^1.0.3"
|
|
|
|
pytest-timeout = "^2.1.0"
|
|
|
|
flake8 = "^4.0.1"
|
|
|
|
mypy = "^0.931"
|
|
|
|
pytest-custom-exit-code = "0.3.0"
|
2023-09-15 17:08:23 +02:00
|
|
|
pyln-testing = { path = "./contrib/pyln-testing", develop = true, extras = [ "grpc" ] }
|
2022-02-22 14:33:41 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|