-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
75 lines (64 loc) · 1.45 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
[project]
name = "bigquery-optimization"
version = "0.0.1"
description = "Agent to provide actionable recommendations on BigQuery queries."
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
keywords = ['adk', 'agent']
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk==1.3.0",
"uvicorn==0.34.3",
"google-cloud-aiplatform[evaluation]",
]
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["bq_agent_app"]
[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"
]
[tool.agent_packs]
template = "adk"
[tool.mypy]
files = ["bq_agent_app"]
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 = ["bq_agent_app"]
omit = ["server.py"]
[tool.deptry.per_rule_ignores]
DEP002 = ["uvicorn"]