2022-02-21 19:56:54 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pyln-testing"
|
2023-11-02 08:41:59 +01:00
|
|
|
version = "23.11"
|
2022-04-06 07:09:48 +02:00
|
|
|
description = "Test your Core Lightning integration, plugins or whatever you want"
|
2022-02-21 19:56:54 +01:00
|
|
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
|
|
|
license = "BSD-MIT"
|
2022-03-29 13:35:06 +02:00
|
|
|
readme = "README.md"
|
2022-02-21 19:56:54 +01:00
|
|
|
|
|
|
|
packages = [
|
|
|
|
{ include = "pyln/testing" },
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-20 01:01:11 +02:00
|
|
|
python = "^3.8"
|
2023-06-16 13:46:33 +02:00
|
|
|
pytest = "^7"
|
2022-02-21 19:56:54 +01:00
|
|
|
ephemeral-port-reserve = "^1.1.4"
|
2023-06-16 13:46:33 +02:00
|
|
|
psycopg2-binary = "^2.9"
|
2022-02-21 19:56:54 +01:00
|
|
|
python-bitcoinlib = "^0.11.0"
|
|
|
|
jsonschema = "^4.4.0"
|
2023-06-16 13:46:33 +02:00
|
|
|
pyln-client = ">=23"
|
|
|
|
Flask = "^2"
|
|
|
|
cheroot = "^8"
|
|
|
|
psutil = "^5.9"
|
2023-10-02 09:31:40 +02:00
|
|
|
requests = "^2.31.0"
|
2023-07-20 14:41:07 +02:00
|
|
|
|
|
|
|
grpcio = { version = "^1", optional = true }
|
|
|
|
pyln-grpc-proto = { version = "^0.1", optional = true }
|
2022-06-22 15:06:04 +02:00
|
|
|
|
2022-02-21 19:56:54 +01:00
|
|
|
[tool.poetry.dev-dependencies]
|
2022-06-22 15:06:04 +02:00
|
|
|
pyln-client = { path = "../pyln-client", develop = true}
|
2023-07-20 14:41:07 +02:00
|
|
|
pyln-grpc-proto = { path = "../pyln-grpc-proto", develop = true, optional = true}
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
grpc = ["pyln-grpc-proto", "grpcio"]
|
2022-02-21 19:56:54 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|