34 lines
621 B
TOML
34 lines
621 B
TOML
[project]
|
|
name = "va-evaluator"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"google-cloud-aiplatform",
|
|
"google-cloud-bigquery>=3.40.1",
|
|
"google-cloud-storage",
|
|
"google-genai>=1.64.0",
|
|
"httpx",
|
|
"pandas",
|
|
"pandas-gbq",
|
|
"pydantic",
|
|
"pydantic-settings",
|
|
"ranx>=0.3.21",
|
|
"rich",
|
|
"typer",
|
|
]
|
|
|
|
[project.scripts]
|
|
va-evaluator = "va_evaluator.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.3,<0.9.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.2",
|
|
"ty>=0.0.18",
|
|
]
|