-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 861 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
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["agentgauge"]
[tool.setuptools.package-data]
agentgauge = ["py.typed"]
[project]
name = "agentgauge"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"prometheus-client>=0.20",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.39"]
openai = ["openai>=1.0"]
langchain = ["langchain-core>=0.1"]
all = ["anthropic>=0.39", "openai>=1.0", "langchain-core>=0.1", "langchain-openai>=0.1", "langgraph>=0.1"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
"python-dotenv",
"anthropic>=0.39",
"openai>=1.0",
"langchain-core>=0.1",
"langchain-openai>=0.1",
"langgraph>=0.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"