Files
gmTouringMiniApp/server/pyproject.toml
T

30 lines
650 B
TOML
Raw Normal View History

2026-07-30 16:04:34 +08:00
[build-system]
requires = [ "setuptools>=64" ]
2026-07-30 16:04:34 +08:00
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" ]
2026-07-30 16:04:34 +08:00
[tool.pytest.ini_options]
pythonpath = [ "." ]
testpaths = [ "tests" ]