| 1234567891011121314151617181920212223242526272829303132 |
- [project]
- name = "backend"
- version = "0.1.0"
- description = "Add your description here"
- readme = "README.md"
- requires-python = ">=3.10"
- dependencies = [
- "fastapi>=0.141.1",
- "hello-agents>=1.0.0",
- "httpx>=0.28.1",
- "pydantic>=2.13.4",
- "pydantic-settings>=2.14.2",
- "python-dotenv>=1.2.2",
- "uvicorn[standard]>=0.52.0",
- ]
- [[tool.uv.index]]
- url = "https://pypi.tuna.tsinghua.edu.cn/simple"
- default = true
- [dependency-groups]
- dev = [
- "pytest>=9.1.1",
- ]
- [tool.pytest.ini_options]
- markers = [
- "integration: 需真实 LLM/TMDB 的端到端测试(较慢)",
- ]
- filterwarnings = [
- "ignore::DeprecationWarning",
- ]
|