mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
32 lines
598 B
TOML
32 lines
598 B
TOML
|
|
[tool.poetry]
|
|
name = "pyln-grpc-proto"
|
|
version = "0.1.2"
|
|
description = "The compiled GRPC proto for CLN"
|
|
authors = ["Christian Decker <decker@blockstream.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
packages = [
|
|
{ include = "pyln/grpc/*.py" },
|
|
]
|
|
|
|
include = [
|
|
{ path = "pyln/grpc", format = ["wheel", "sdist"] }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
grpcio = "*"
|
|
protobuf3 = "*"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
grpcio = "*"
|
|
twine = "^4.0.2"
|
|
mypy-protobuf = "^3.5.0"
|
|
grpcio-tools = "^1.59.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|