-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 863 Bytes
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 = "Node-Pod-Orchestration"
version = "0.5.1"
description = ""
authors = ["Alexander Röhl <alexander.roehl@uni-tuebingen.de>", "David Hieber <david.hieber@uni-tuebingen.de>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
kubernetes = "^35.0.0"
fastapi = "^0.135.3"
uvicorn = "^0.44.0"
docker = "^7.0.0"
psycopg2-binary = "^2.9.9"
sqlalchemy = "^2.0.26"
PyJWT = "^2.10.1"
python-dotenv = "^1.2.2"
kong-admin-client = {git = "https://github.com/PrivateAIM/kong-admin-python-client.git"}
flame-hub-client = "^0.2.13"
cryptography="^46.0.7"
truststore = "^0.10.4"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
ruff = "^0.15.10"
pre-commit = "^4.5.1"
coverage = "^7.13.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"