-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 1.19 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
[project]
name = "devdex"
version = "1.0.0"
description = "DevDex — a benchmark for developer search: repo discovery, docs lookup, issue/PR resolution"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
# ONLY WHAT THIS TREE IMPORTS. Verified by AST-walking every .py here: the only third-party
# imports are anyio, claude_agent_sdk, numpy and pytest. Declaring more would make a clean
# install slower and more fragile for no benefit.
#
# NOTE: no vendor SDK appears here on purpose. Every engine is reached over its own MCP server via
# plain HTTP, so adding an arm needs a URL and a tool name -- not a dependency.
dependencies = [
"claude-agent-sdk", # the agent loop every arm is driven through
"anyio", # the SDK's async transport
"numpy", # bootstrap CIs in benchmark/run_benchmark.py's report()
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
devdex = "devdex.run_eval:main"
devdex-report = "devdex.scorer.report_metrics:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["devdex"]
[tool.pytest.ini_options]
testpaths = ["devdex/tests"]