Spaces:
Build error
Build error
File size: 346 Bytes
9753ee2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | [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"
|