pyproject.toml 645 B

1234567891011121314151617181920212223242526272829303132
  1. [project]
  2. name = "backend"
  3. version = "0.1.0"
  4. description = "Add your description here"
  5. readme = "README.md"
  6. requires-python = ">=3.10"
  7. dependencies = [
  8. "fastapi>=0.141.1",
  9. "hello-agents>=1.0.0",
  10. "httpx>=0.28.1",
  11. "pydantic>=2.13.4",
  12. "pydantic-settings>=2.14.2",
  13. "python-dotenv>=1.2.2",
  14. "uvicorn[standard]>=0.52.0",
  15. ]
  16. [[tool.uv.index]]
  17. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  18. default = true
  19. [dependency-groups]
  20. dev = [
  21. "pytest>=9.1.1",
  22. ]
  23. [tool.pytest.ini_options]
  24. markers = [
  25. "integration: 需真实 LLM/TMDB 的端到端测试(较慢)",
  26. ]
  27. filterwarnings = [
  28. "ignore::DeprecationWarning",
  29. ]