agent-verif / packages /api /pyproject.toml
claude's playground
feat(agent verf): Add multi-provider LLM infrastructure with dual-mode support
0a6602d
Raw
History Blame Contribute Delete
1.4 kB
# ============================================================================
# agent verf - API Package
# Version: 0.1.0
# Last Updated: 2026-01-13
#
# FastAPI backend for the verification service.
#
# Usage:
# cd packages/api
# uv run uvicorn src.main:app --reload
# ============================================================================
[project]
name = "agentverf-api"
version = "0.1.0"
description = "FastAPI backend for agent verf"
requires-python = ">=3.11"
dependencies = [
# Web Framework
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
# Validation
"pydantic>=2.5.0",
# CORS & Security
"python-multipart>=0.0.6",
# Redis
"redis>=5.0.0",
# Logging
"structlog>=24.1.0",
# Environment
"python-dotenv>=1.0.0",
# Core package (local)
"agentverf-core",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.26.0", # For testing
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
# ============================================================================
# Tool Configuration
# ============================================================================
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"