-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "obench"
version = "1.0.0"
description = "OpenBench harness benchmarking framework — compare coding-agent CLIs on shared tasks"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [{ name = "OpenBench contributors" }]
keywords = ["benchmark", "coding-agents", "harness", "evaluation", "openbench"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]
# Stdlib-only runtime; no third-party dependencies.
dependencies = []
[project.urls]
Homepage = "https://github.com/minghinmatthewlam/openbench"
Documentation = "https://github.com/minghinmatthewlam/openbench#readme"
Repository = "https://github.com/minghinmatthewlam/openbench"
[project.scripts]
obench = "obench.cli:main"
[tool.setuptools.packages.find]
include = ["obench*"]
[tool.setuptools.package-data]
obench = [
"adapters/*.py",
"docker/*",
"examples/*",
"bridge/*",
"*.md",
"*.json",
"*.sh",
"*.sample.json",
]