-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (76 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "clawbench-eval"
version = "0.7.0"
description = "Benchmarking framework for evaluating AI web agents on real-world online tasks"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fpdf2>=2.8",
"huggingface_hub>=0.27",
"pyyaml>=6.0",
"questionary>=2.0",
"rich>=13.0",
]
[project.urls]
Homepage = "https://claw-bench.com"
Repository = "https://github.com/reacher-z/ClawBench"
Issues = "https://github.com/reacher-z/ClawBench/issues"
Paper = "https://arxiv.org/abs/2604.08523"
[project.scripts]
clawbench = "clawbench.tui:main"
clawbench-run = "clawbench.runner.run:main"
clawbench-batch = "clawbench.runner.batch:main"
clawbench-rescore = "clawbench.eval.rescore:main"
clawbench-reproduce = "clawbench.eval.reproduce:main"
clawbench-harbor-adapt = "clawbench.eval.harbor_adapter:main"
clawbench-prorl-submit = "clawbench.prorl.submit:main"
clawbench-prorl-mock = "clawbench.prorl.mock_gateway:main"
[tool.hatch.build.targets.wheel]
packages = ["src/clawbench"]
[tool.hatch.build.targets.wheel.force-include]
".env" = "clawbench/_bundled/.env"
"models/models.example.yaml" = "clawbench/_bundled/models/models.example.yaml"
"models/model.schema.json" = "clawbench/_bundled/models/model.schema.json"
"test-cases" = "clawbench/_bundled/test-cases"
"assets" = "assets"
"NOTICE" = "NOTICE"
[tool.hatch.build.targets.sdist]
include = [
"/.env",
"/models/models.example.yaml",
"/models/model.schema.json",
"/test-cases",
"/src/clawbench",
"/README.md",
"/LICENSE",
"/NOTICE",
"/assets",
]
exclude = [
"/models/models.yaml",
"/test-output",
"/dist",
"/build",
]
[tool.ruff]
target-version = "py311"
[tool.pyright]
include = ["src/clawbench", "tests"]
exclude = [
".venv",
"src/clawbench/runtime",
"**/node_modules",
"**/__pycache__",
"**/.*"
]
[dependency-groups]
dev = [
"jsonschema>=4.26.0",
"pre-commit>=4.6.0",
"pyright>=1.1.407",
"pytest>=9.0.3",
"ruff>=0.15.12",
]