21 lines
431 B
TOML
21 lines
431 B
TOML
[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"
|