mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
49d2779078
Allows us to just rely on `poetry` to manage our dependencies, should finally solve all the `mrkd`, `mako` and `mistune` issues we've had for a while.
32 lines
907 B
TOML
32 lines
907 B
TOML
[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
|
|
python = "^3.7"
|
|
pyln-client = { path = "contrib/pyln-client" }
|
|
pyln-proto = { path = "contrib/pyln-proto" }
|
|
Mako = "^1.1.6"
|
|
mrkd = "^0.2.0"
|
|
websocket-client = "^1.2.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
# Test dependencies and inherited dependencies belong here
|
|
crc32c = "^2.2.post0" # Belongs to lnprototest
|
|
pytest-xdist = "^2.5.0"
|
|
mistune = "0.8.4" # Belongs to pyln-proto
|
|
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"
|
|
pyln-testing = { path = "contrib/pyln-testing" }
|
|
flaky = "^3.7.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|