2022-02-21 19:56:54 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pyln-testing"
|
2022-06-22 15:06:04 +02:00
|
|
|
version = "0.11.1"
|
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]
|
|
|
|
python = "^3.7"
|
|
|
|
pytest = "^7.0.1"
|
|
|
|
ephemeral-port-reserve = "^1.1.4"
|
2022-03-01 13:01:55 +01:00
|
|
|
psycopg2-binary = "^2.9.3"
|
2022-02-21 19:56:54 +01:00
|
|
|
python-bitcoinlib = "^0.11.0"
|
|
|
|
jsonschema = "^4.4.0"
|
2022-06-22 15:06:04 +02:00
|
|
|
pyln-client = "^0.11"
|
2022-02-21 19:56:54 +01:00
|
|
|
Flask = "^2.0.3"
|
|
|
|
cheroot = "^8.6.0"
|
|
|
|
psutil = "^5.9.0"
|
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}
|
2022-02-21 19:56:54 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|