-
Notifications
You must be signed in to change notification settings - Fork 531
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 831 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kagent-core"
version = "0.1.0"
description = "kagent common library for kagent python packages"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"a2a-sdk[http-server]>=0.3.23",
"opentelemetry-api>=1.38.0,<1.42.0",
"opentelemetry-sdk>=1.38.0,<1.39.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.38.0,<1.39.0",
"opentelemetry-instrumentation-openai>=0.52.5",
"opentelemetry-instrumentation-anthropic>=0.52.5",
"opentelemetry-instrumentation-httpx >= 0.52.0",
"opentelemetry-instrumentation-fastapi>=0.52.0",
"opentelemetry-instrumentation-google-generativeai>=0.52.5",
"typing-extensions>=4.0.0",
]
[tool.ruff]
extend = "../../pyproject.toml"
[tool.hatch.build.targets.wheel]
packages = ["src/kagent"]