-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 982 Bytes
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
[project]
name = "weather-agent"
version = "0.1.0"
description = "A terminal weather chat agent using litellm + OpenRouter with MCP-discovered tools."
readme = "README.md"
authors = [
{ name = "Ben Lambert", email = "blambert@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.139.2",
"litellm>=1.92.0",
"mcp>=1.28.1",
"orjson>=3.11.9",
"rich>=15.0.0",
"textual>=8.2.8",
"typer>=0.27.0",
]
[project.optional-dependencies]
observability = [
"langfuse<3",
"opentelemetry-exporter-otlp>=1.27.0",
"grpcio>=1.66.0",
]
[project.scripts]
weather-agent = "weather_agent.cli:main"
[build-system]
requires = ["uv_build>=0.9.3,<0.10.0"]
build-backend = "uv_build"
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
target-version = ["py313"]
[dependency-groups]
dev = [
"black>=26.5.1",
"isort>=8.0.1",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"