-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.63 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "agent-experiments"
version = "0.0.1"
description = "Experiments with ADK"
authors = [
{ name = "Nathan Faggian", email = "nathan.faggian@gmail.com" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
keywords = ['agent-catalog', 'adk', 'agent']
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk>=1.10.0",
"litellm>=1.0.0",
"pyyaml>=6.0.2",
"uvicorn==0.34.3",
"google-auth>=2.23.0",
"google-auth-oauthlib>=1.1.0",
"google-api-python-client>=2.100.0",
"prefect>=3.0.0",
"markdown-it-py>=3.0.0",
]
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipython>=8.36.0",
"pytest>=8.3.5",
"pre-commit>=4.2.0",
"ruff>=0.11.5",
"mypy>=1.16.0",
"deptry>=0.23.0",
"pytest-cov>=4.0.0",
"types-pyyaml>=6.0.12.20250809",
]
[tool.agent_packs]
template = "adk"
[tool.mypy]
files = ["src"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
ignore_missing_imports = true
[tool.basedpyright]
reportAny = false
reportExplicitAny = false
reportMissingTypeStubs = false
reportUnknownMemberType = false
reportUnknownVariableType = false
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
fix = true
[tool.coverage.report]
skip_empty = true
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["server.py"]
[tool.deptry.per_rule_ignores]
DEP002 = ["uvicorn"]