-
Notifications
You must be signed in to change notification settings - Fork 565
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (67 loc) · 1.81 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
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "agenta"
version = "0.102.0"
description = "The SDK for agenta is an open-source LLMOps platform."
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = "MIT"
authors = [
{ name = "Mahmoud Mabrouk", email = "mahmoud@agenta.ai" },
{ name = "Juan Vega", email = "jp@agenta.ai" },
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
keywords = ["LLMOps", "LLM", "evaluation", "prompt engineering"]
dependencies = [
"agenta-client",
"pydantic>=2,<3",
"httpx>=0.28,<0.29",
"structlog>=25,<26",
"opentelemetry-api>=1,<2",
"opentelemetry-sdk>=1,<2",
"opentelemetry-instrumentation>=0.63b1,<0.64",
"opentelemetry-exporter-otlp-proto-http>=1,<2",
"fastapi>=0.136,<0.137",
"pyyaml>=6,<7",
"litellm>=1,<2",
"openai>=2,<3",
"jinja2>=3,<4",
"mystace>=1,<2",
"orjson>=3,<4",
"python-jsonpath>=2,<3",
"daytona>=0.183,<0.184",
]
[project.urls]
Homepage = "https://agenta.ai"
Repository = "https://github.com/agenta-ai/agenta"
Documentation = "https://agenta.ai/docs/"
[dependency-groups]
dev = [
"posthog>=7,<8",
"questionary>=2,<3",
"setuptools>=80,<81",
"uvicorn>=0.38,<0.39",
"requests>=2,<3",
"pexpect>=4,<5",
"boto3>=1,<2",
"click>=8,<9",
"pytest>=9,<10",
"pytest-asyncio>=1,<2",
"pytest-xdist>=3,<4",
"pytest-mock>=3,<4",
"pytest-html>=4,<5",
]
[tool.uv.sources]
agenta-client = { path = "../../clients/python", editable = true }
[tool.uv.build-backend]
module-name = "agenta"
module-root = ""
source-exclude = ["agenta/tests/*"]
[build-system]
requires = ["uv_build>=0.11,<0.12"]
build-backend = "uv_build"