-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.84 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
73
[build-system]
requires = ["uv_build>=0.7"]
build-backend = "uv_build"
[project]
name = "understudy"
version = "0.5.0"
description = "Simulation and trace-based evaluation for agentic systems"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Gaurav Sood" },
]
keywords = ["agent", "evaluation", "simulation", "testing", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"litellm>=1.50",
]
[project.optional-dependencies]
adk = ["google-adk>=1.0", "python-dotenv>=1.0"]
http = ["httpx>=0.27"]
langgraph = ["langgraph>=0.2", "langchain-core>=0.3", "langchain-openai>=0.3"]
server = ["fastapi>=0.115", "uvicorn>=0.32"]
reports = ["jinja2>=3.0", "click>=8.0"]
docs = [
"sphinx>=7.0",
"furo>=2024.0",
"myst-parser>=3.0",
"sphinx-autodoc-typehints>=2.0",
]
all = ["understudy[adk,http,langgraph,server,reports]"]
dev = [
"understudy[all,docs]",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
"ruff>=0.4",
]
[project.scripts]
understudy = "understudy.cli:main"
[project.entry-points.pytest11]
understudy = "understudy.pytest_plugin"
[project.urls]
Homepage = "https://github.com/gojiplus/understudy"
Documentation = "https://gojiplus.github.io/understudy"
Repository = "https://github.com/gojiplus/understudy"
Issues = "https://github.com/gojiplus/understudy/issues"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"