36 lines
766 B
TOML
36 lines
766 B
TOML
[project]
|
|
name = "adk-firestore-sessionmanager"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "A8065384", email = "anibal.angulo.cardoza@banorte.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"google-adk>=1.0.0",
|
|
"google-cloud-firestore>=2.19.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.22,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"pytest-asyncio>=0.24",
|
|
"pytest-cov>=7.0.0",
|
|
"rich>=14.0.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "strict"
|
|
addopts = "--cov=adk_firestore_sessionmanager --cov-report=term-missing"
|
|
|
|
[tool.coverage.run]
|
|
source = ["src/adk_firestore_sessionmanager"]
|
|
|
|
[tool.coverage.report]
|
|
show_missing = true
|