-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (47 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "ClouderaAIAgentStudio"
version = "0.0.1"
description = "Cloudera AI Agent Studio"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"arize-phoenix==7.12.0",
"arize-phoenix-otel==0.7.1",
"crewai==0.100.0",
"crewai-tools==0.33.0",
"gql==3.5.0",
"grpcio==1.65.4",
"grpcio-tools==1.65.4",
"litellm[proxy]==1.57.4",
"openinference-instrumentation-crewai==0.1.4",
"openinference-instrumentation-litellm==0.1.9",
"opentelemetry-api==1.28.2",
"protobuf==5.27.3",
"psutil==6.1.0",
"pydantic==2.10.6",
"pysqlite3-binary==0.5.4; platform_system == 'Linux'",
"sqlalchemy==2.0.36",
"uv==0.5.29",
"alembic==1.14.1",
]
[dependency-groups]
dev = [
"autoflake==2.3.1",
"debugpy==1.8.12",
"pytest==8.2.2",
"pytest-cov==5.0.0",
"ruff==0.9.4",
]
workflow_deployment = [
"arize-phoenix==7.12.0",
"arize-phoenix-otel==0.7.1",
"crewai==0.100.0",
"gql==3.5.0",
"openinference-instrumentation-crewai==0.1.4",
"openinference-instrumentation-litellm==0.1.9",
"opentelemetry-api==1.28.2",
"pydantic==2.10.6",
"pysqlite3-binary==0.5.4",
]
[tool.ruff]
line-length = 120