flight-rebooking / pyproject.toml
dhnkhr's picture
Production-ready: Clean code with Groq API integration, LoRA model support, and FastAPI app
9753ee2
raw
history blame contribute delete
346 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flight-rebooking-agent"
version = "0.1.0"
description = "Flight Rebooking OpenEnv Agent"
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"