forked from zhouruizhe/gmTouringMiniApp
30 lines
618 B
TOML
30 lines
618 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "guangming-travel-assistant"
|
|
version = "0.1.0"
|
|
description = "Shenzhen Guangming travel planning assistant POC"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"fastapi>=0.115.0,<1.0.0",
|
|
"openai>=1.50.0,<2.0.0",
|
|
"pydantic>=2.8.0,<2.13.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,<9.0.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = ["app"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|