-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.04 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "gl-client"
version = "0.3.0"
dependencies = [
"protobuf>=3",
"grpcio>=1.56",
"pyln-grpc-proto>=0.1",
]
[tool.poetry]
name = "gl-client"
version = "0.3.0"
description = ""
authors = ["Christian Decker <[email protected]>"]
license = "MIT"
packages = [
{ include = "glclient" },
]
include = [
{ path = "glclient/*.pyi", format = ["wheel", "sdist"] },
{ path = "glclient/py.typed", format = ["wheel", "sdist"] },
]
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
mypy-protobuf = "^3.5"
maturin = {version = ">=1.0,<1.3.2", extras = ["patchelf"]}
mypy = "^1.7.0"
grpcio-tools = "^1.67"
[tool.poetry.dependencies]
python = ">=3.8,<4"
grpcio = ">=1.67"
pyln-grpc-proto = ">=0.1.2,<1.2"
protobuf = ">=4"
maturin = ">=1.0"
[build-system]
requires = ["maturin>=1.0"]
build-backend = "maturin"
[tool.mypy]
exclude = [
'glclient/greenlight_pb2.py',
'glclient/scheduler_pb2.py',
'glclient/greenlight_pb2_grpc.py',
'glclient/scheduler_pb2_grpc.py',
]
[[tool.mypy.overrides]]
module = 'glclient'