2025-12-22 18:05:49 -08:00
|
|
|
[project]
|
|
|
|
|
name = "travel-agents"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Travel Booking Agents - Weather, Flight, and Currency"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"click>=8.2.1",
|
|
|
|
|
"pydantic>=2.11.7",
|
2025-12-23 17:14:50 -08:00
|
|
|
"fastapi>=0.115.0",
|
|
|
|
|
"uvicorn>=0.30.0",
|
|
|
|
|
"openai>=1.0.0",
|
2025-12-22 18:05:49 -08:00
|
|
|
"httpx>=0.24.0",
|
2025-12-23 17:14:50 -08:00
|
|
|
"opentelemetry-api>=1.20.0",
|
2025-12-22 18:05:49 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
travel_agents = "travel_agents:main"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
2025-12-23 17:14:50 -08:00
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src/travel_agents"]
|