mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
25 lines
558 B
TOML
25 lines
558 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,<3.14"
|
|
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"]
|