Initial implementation

This commit is contained in:
2026-02-22 16:59:03 +00:00
commit fd07f4a3e3
11 changed files with 4261 additions and 0 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[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",
"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"