Files
wehub-resource-sync a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:42 +08:00

39 lines
744 B
TOML

[project]
name = "gortex-eval"
version = "0.1.0"
description = "SWE-bench evaluation harness for Gortex code intelligence"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"litellm>=1.50.0",
"docker>=7.0.0",
"pyyaml>=6.0",
"jinja2>=3.1.0",
"datasets>=3.0.0",
"tabulate>=0.9.0",
]
[project.optional-dependencies]
dev = [
"hypothesis>=6.88.0",
"pytest>=8.0.0",
]
[project.scripts]
gortex-eval = "run_eval:main"
gortex-eval-analyze = "analysis.analyze_results:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py310"