-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.16 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
[project]
name = "termchart-adk-agent"
version = "0.1.0"
description = "A standalone Google-ADK agent that listens to a termchart viewer console and responds by rendering diagrams and posting text replies."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"google-adk>=1.26,<2",
"google-genai>=1.0",
"httpx>=0.27",
"pydantic>=2",
"pydantic-settings>=2",
]
[project.scripts]
termchart-adk = "termchart_adk.main:main"
[dependency-groups]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"ruff>=0.6",
"mypy>=1.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/termchart_adk"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "ASYNC"]
[tool.mypy]
python_version = "3.11"
mypy_path = "src"
plugins = ["pydantic.mypy"]
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = ["google.*"]
ignore_missing_imports = true