Initial commit

This commit is contained in:
2025-08-09 16:09:37 +05:30
commit 57cbf155ea
8 changed files with 196 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "test-project"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk>=1.10.0",
"ruff>=0.12.8",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "TID"]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["agents"]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"