-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.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
[project]
name = "openbench"
version = "0.1.0"
description = "Long-horizon PR replay benchmark for coding agents, with cross-generation behavioral analysis"
readme = "README.md"
authors = [
{ name = "Bat", email = "59629055+BrandeisPatrick@users.noreply.github.com" }
]
requires-python = ">=3.12"
dependencies = [
"duckdb>=1.5.3",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"matplotlib>=3.11.0",
"pydantic>=2.13.4",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"typer>=0.26.7",
"unidiff>=0.7.5",
]
[project.scripts]
openbench = "openbench.cli:main"
[build-system]
requires = ["uv_build>=0.11.19,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.17",
"vulture>=2.16",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
# B008: typer.Option(...)/Argument(...) in defaults is the required idiom.
# E501: long lines tolerated in dense signature tables / prompts.
ignore = ["B008", "E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]