generated from PrivateAIM/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 878 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
[tool.poetry]
name = "hub-adapter"
version = "0.1.0"
description = "API gateway interface for the Node UI to interact with the other node services and the hub."
authors = ["Bruce Schultz <[email protected]>"]
readme = "README.md"
license = "Apache 2.0"
packages = [{ include = "hub_adapter" }]
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "^0.32.0"
fastapi = "^0.115.2"
async-timeout = "^5.0.1"
kubernetes = "^31.0.0"
click = "^8.1.7"
python-multipart = "^0.0.19"
httpx = "^0.28.0"
kong-admin-client = { git = "https://github.com/PrivateAIM/kong-admin-python-client.git" }
python-dotenv = "^1.0.1"
python-jose = "^3.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
ruff = "^0.1.8"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hub-adapter = "hub_adapter.cli:main"