pyproject.toml 423 B

123456789101112131415161718
  1. [project]
  2. name = "creation-knowledge"
  3. version = "0.1.0"
  4. description = "从帖子里拆出可指导创作的知识,组装成 ingest payload 入库。"
  5. requires-python = ">=3.11"
  6. dependencies = [
  7. "httpx>=0.27.0",
  8. "pydantic>=2.8.0",
  9. "psycopg2-binary>=2.9.9",
  10. "fastapi>=0.115.0",
  11. "uvicorn>=0.30.0",
  12. "pytest>=8.2.0",
  13. "imageio-ffmpeg>=0.4.9",
  14. ]
  15. [tool.pytest.ini_options]
  16. testpaths = ["tests"]
  17. pythonpath = ["."]