Files
gmTouringMiniApp/server/pyproject.toml
T
周瑞哲 ac4179086c
AI Code Review / review (pull_request) Successful in 11m45s
Update AI planner integration, docs, and config
2026-07-30 16:33:39 +08:00

30 lines
650 B
TOML

[build-system]
requires = [ "setuptools>=64" ]
build-backend = "setuptools.build_meta"
[project]
name = "guangming-travel-assistant"
version = "0.2.0"
description = "Coordinate-free POI recommendation backend for the Guangming travel POC"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.0,<1.0.0",
"openai>=1.50.0,<3.0.0",
"pydantic>=2.8.0,<3.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"uvicorn[standard]>=0.30.0,<1.0.0",
]
[project.optional-dependencies]
test = [
"httpx>=0.27.0,<1.0.0",
"pytest>=8.0.0,<10.0.0",
]
[tool.setuptools]
packages = [ "app" ]
[tool.pytest.ini_options]
pythonpath = [ "." ]
testpaths = [ "tests" ]