-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
38 lines (33 loc) · 983 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
37
38
[tool.poetry]
name = "faucetconfrpc"
version = "0.55.73"
description = "utility to manage FAUCET config files via RPC"
authors = ["Charlie Lewis <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
c65faucet = "1.0.80"
grpcio = "1.68.1"
grpcio-tools = "1.68.1"
protobuf = "5.29.2"
prometheus_client = "0.21.1"
pybind11 = "2.13.6"
os-ken = "<=2.11.2"
# dnspython 2.3.0 is not compatible with eventlet
# https://github.com/eventlet/eventlet/issues/781
dnspython = "<2.7.1"
pyopenssl = ">22.1.0"
cryptography = "44.0.0"
[tool.poetry.dev-dependencies]
attrs = "24.3.0"
pylint = "3.3.3"
pytype = "2024.10.11"
pytest = "8.3.4"
[tool.poetry.scripts]
faucetconfrpc_server = "faucetconfrpc.faucetconfrpc_server:serve"
faucetconfrpc_client = "faucetconfrpc.faucetconfrpc_client:main"
[tool.poetry.urls]
homepage = "https://github.com/IQTLabs/faucetconfrpc"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"