-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 858 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>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clawbench"
version = "0.2.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.scripts]
clawbench = "clawbench.tui:main"
clawbench-run = "clawbench.runner.run:main"
clawbench-batch = "clawbench.runner.batch:main"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["clawbench", "clawbench.runner", "clawbench.utils"]
[tool.setuptools.package-data]
"clawbench.utils" = ["resume_template.json"]
[tool.ruff]
target-version = "py311"
[dependency-groups]
dev = [
"pre-commit>=4.6.0",
"ruff>=0.15.12",
]