-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentlab"
version = "0.1.0"
description = "A modular platform for building, experimenting with, evaluating, and deploying AI agents"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"pydantic>=2.0",
"click>=8.1",
"pyyaml>=6.0",
"openai>=1.0",
"anthropic>=0.30",
"rich>=13.0",
"tabulate>=0.9",
"docker>=7.0",
"python-dotenv>=1.0",
"fastapi>=0.115",
"uvicorn>=0.30",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
]
vector = [
"chromadb>=0.5",
"sentence-transformers>=2.2",
]
phoenix = [
"arize-phoenix>=4.0",
"arize-phoenix-otel>=0.13",
"openinference-instrumentation-openai>=0.1",
]
[project.scripts]
lab = "agentlab.cli.main:cli"
[tool.setuptools.packages.find]
include = ["agentlab*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100