-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (68 loc) · 2.13 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
[project]
name = "atl-transit"
version = "0.1.0"
description = "Conversational agent answering questions about Atlanta transit service and equity"
readme = "README.md"
authors = [{ name = "Felix P.", email = "devfep@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"duckdb==1.5.5",
"google-adk[eval]==2.6.3",
"gtfs-realtime-bindings==2.2.0",
"pandas>=2.2,<3",
"python-dotenv==1.2.2",
"render-sdk>=0.6.0",
"requests==2.34.2",
"snowflake-connector-python[pandas]==4.7.2",
]
[project.scripts]
atl-harvest = "atl_transit.harvest:main"
[build-system]
requires = ["uv_build>=0.12.3,<0.13.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"arize-phoenix>=20.1.0",
"arize-phoenix-otel>=0.17.1",
"openinference-instrumentation-google-adk>=0.1.19",
"pytest==9.1.1",
"pytest-asyncio>=1.4.0",
"pytest-cov==7.1.0",
"ruff>=0.13,<0.14",
"ty==0.0.70",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # conflicts with the formatter
"ISC001", # conflicts with the formatter
"CPY001", # single-author hackathon repo; no per-file copyright headers
"D203", # incompatible with D211
"D213", # incompatible with D212
"S608", # SQL is built from a fixed schema, not user strings
"T201", # harvest is a CLI; print is the interface
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101", "PLR2004", "D103", "INP001"]
# The AG-UI bridge is its own uv project's entry point, not a module of this package.
"atl-ui/agent/main.py" = ["INP001"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ty.environment]
python-version = "3.13"
[tool.ty.terminal]
error-on-warning = true
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
filterwarnings = [
"error",
# All raised inside google-adk 2.6.3 itself, not by anything in this repo. Without these
# the eval tests fail on ADK's own warnings rather than on agent behaviour.
"ignore:BaseAgentConfig is deprecated:DeprecationWarning",
"ignore:.*EXPERIMENTAL.*:UserWarning",
"ignore:.*vertexai.preview.rag.*:UserWarning",
]