mirror of
https://github.com/collinear-ai/yc-bench.git
synced 2026-04-19 12:58:03 +00:00
40 lines
961 B
TOML
40 lines
961 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "yc-bench"
|
|
version = "0.1.0"
|
|
description = "Long-horizon deterministic benchmark for LLM agents — CEO of an AI startup"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { text = "MIT" }
|
|
dependencies = [
|
|
"typer>=0.9",
|
|
"sqlalchemy>=2.0",
|
|
"pydantic>=2.0",
|
|
"litellm>=1.40",
|
|
"python-dotenv>=1.0",
|
|
"matplotlib>=3.10.8",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
# Install when DATABASE_URL points to PostgreSQL: uv add yc-bench[postgres]
|
|
postgres = ["psycopg[binary]>=3.1"]
|
|
|
|
[project.scripts]
|
|
yc-bench = "yc_bench.cli:app_main"
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
# Hatchling finds src/yc_bench automatically with src layout
|
|
packages = ["src/yc_bench"]
|
|
# configs/ presets will be included here once moved inside the package (step 5)
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"src/",
|
|
"configs/",
|
|
"README.md",
|
|
"pyproject.toml",
|
|
]
|