forked from kornpow/lnd-grpc-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 871 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "lnd-grpc-client"
version = "0.5.7"
description = "An rpc client for LND (lightning network deamon)"
authors = ["Kornpow <test@email.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/kornpow/lnd-grpc-client"
homepage = "https://github.com/kornpow/lnd-grpc-client"
packages = [
{ include = "lndgrpc" },
]
exclude = ["lndgrpc/googleapis/*"]
[tool.poetry.scripts]
lndgrpcclient_cli = "lndgrpc.cli:cli"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
protobuf = "^3.15.8"
aiogrpc = "^1.8"
googleapis-common-protos = "^1.53.0"
grpcio = "^1.37.0"
grpcio-tools = "^1.37.0"
protobuf3-to-dict = "^0.1.5"
yachalk = "^0.1.5"
click = "^8.1.3"
ptpython = "^3.0.20"
cryptography = "^41.0.2"
[tool.poetry.group.dev.dependencies]
sh = "^2.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"