plano/demos/agent_orchestration/travel_agents/pyproject.toml

25 lines
552 B
TOML

[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",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"openai>=1.0.0",
"httpx>=0.24.0",
"opentelemetry-api>=1.20.0",
]
[project.scripts]
travel_agents = "travel_agents:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/travel_agents"]