-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (71 loc) · 2.22 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "benchdeck"
# NEXT_VERSION: UNBLOCKED_WHEN_REMOTE_TAG_AND_PYPI_VERIFIED
# Before changing this value, a human reviewer must confirm:
# 1. `git ls-remote --tags origin` shows no conflicting tag
# 2. https://pypi.org/p/benchdeck/ shows no conflicting release
# 3. The tag (v<VERSION>) will be compared against this field at build time
# by .github/scripts/verify-version-match.sh
# Reviewed 2026-06-16: remote tags v0.1.1, v0.1.2 exist but were never
# published to PyPI (project does not exist). v0.1.3 is the next version.
version = "0.1.3"
description = "Evidence-preserving LLM agent benchmark harness with a live mobile-first SSH TUI."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "MerverliPy"}]
dependencies = [
"openai>=2.0.0",
"pydantic>=2.8.0",
"jsonschema>=4.23.0",
"portalocker>=2.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-cov>=5.0.0",
"ruff>=0.9.0",
"mypy>=1.14.0",
"types-jsonschema>=2.0.0",
"Pillow>=9.0.0",
]
screenshots = [
"Pillow>=9.0.0",
]
[project.scripts]
benchdeck = "benchdeck.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
benchdeck = ["schemas/*.json", "py.typed"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.ruff]
line-length = 100
target-version = "py311"
# Test-harness tooling lives outside the product surface and uses a
# different style (no type annotations, sys.path manipulation, in-process
# subprocess orchestration). Excluded from ruff so product lint/format
# gates stay focused on src/ and tests/. Same rationale as the existing
# per-file-ignores for scripts/generate_demo_screens.py below.
extend-exclude = [
".audit-output",
".opencode",
".product-test",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
"scripts/generate_demo_screens.py" = ["E501", "E741"]
"tests/test_screenshots.py" = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
packages = ["benchdeck"]