forked from zhouruizhe/gmTouringMiniApp
30 lines
650 B
TOML
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" ]
|