-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (80 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
87 lines (80 loc) · 2.01 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
83
84
85
86
87
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bigquery-agent-analytics"
version = "0.2.3"
description = "SDK for analyzing and evaluating agent traces stored in BigQuery."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "Google LLC"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"google-cloud-bigquery>=3.0.0",
"google-adk>=1.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"typer>=0.9.0",
]
[project.optional-dependencies]
llm = [
"google-genai>=1.0.0",
]
bigframes = [
"bigframes>=1.0.0",
]
owl = [
"rdflib>=7.0",
]
cli = []
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pyink>=24.3.0",
"isort>=5.0",
]
improvement = [
"google-genai>=1.0.0",
"google-cloud-aiplatform>=1.148.0",
"pandas>=2.0.0",
"python-dotenv>=1.0.0",
]
all = [
"bigquery-agent-analytics[llm,bigframes,owl,cli,dev,improvement]",
]
[project.scripts]
bq-agent-sdk = "bigquery_agent_analytics.cli:main"
gm = "bigquery_ontology.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/bigquery_agent_analytics", "src/bigquery_ontology"]
exclude = ["src/bigquery_ontology/docs"]
[tool.pyink]
line-length = 80
pyink-indentation = 2
pyink-use-majority-quotes = true
[tool.isort]
profile = "google"
# Use a high line_length so isort only sorts imports without wrapping.
# pyink handles all line-length formatting (prevents isort/pyink conflicts).
line_length = 200
indent = 2
multi_line_output = 4
force_sort_within_sections = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"