forked from kagenti/kagenti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (48 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
61 lines (48 loc) · 1.52 KB
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
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kagenti-project"
version = "0.1.0"
description = "Monorepo for Kagenti code and Ansible deployments"
requires-python = ">=3.10"
# List ALL required Python packages for both Ansible and the Kagenti code
dependencies = [
# Ansible dependencies
"ansible-core",
"ansible",
# Dependencies Ansible collections or Python code
"kubernetes>=34",
"PyYAML>=6.0.3",
# Dependencies for reliable logging in the authentication process.
"typer>=0.20.0"
]
[project.optional-dependencies]
test = [
# Testing framework
"pytest>=7.4.0",
"pytest-timeout>=2.1.0",
"pytest-xdist>=3.3.0", # For parallel test execution
"pytest-asyncio>=0.21.0", # For async test support
# Kubernetes client
"kubernetes>=34",
"urllib3>=2.6.3", # Minimum version for CVE-2025-66418, CVE-2025-66471, CVE-2026-21441 fixes
"protobuf>=6.33.5", # Minimum version for CVE-2026-0994 fix
"pyasn1>=0.6.2", # Minimum version for CVE-2026-23490 fix
# HTTP requests
"requests>=2.31.0",
"httpx>=0.24.0", # For A2A client
# A2A protocol client
"a2a-sdk>=0.2.5",
# Keycloak client
"python-keycloak>=3.7.0",
# JSON Web Token handling
"PyJWT>=2.8.0",
# MLflow for observability tests
"mlflow>=3.9.0",
]
[tool.setuptools]
# Explicitly include only the kagenti package, exclude charts and deployments
packages = ["kagenti"]
[tool.setuptools.package-data]
kagenti = ["**/*"]