-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "agent-skills-tutorial"
version = "0.1.0"
description = "ADK agent demonstrating 4 skill patterns: inline skills, file-based skills, external skills, and meta skills (skill-creator). Uses SkillToolset for progressive disclosure."
authors = [{ name = "Lavi Nigam", email = "nicklavi@google.com" }]
license = {text = "Apache License 2.0"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"google-adk>=1.0.0,<2.0.0",
"python-dotenv>=1.0.0,<2.0.0",
]
[dependency-groups]
dev = [
"google-adk[eval]>=1.0.0",
"pytest-asyncio>=0.26.0",
"pytest>=8.3.5",
]
[tool.ruff]
extend = "../../../pyproject.toml"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["app"]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"