pyproject.toml 440 B

12345678910111213141516171819
  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. "numpy>=1.26",
  15. ]
  16. [tool.pytest.ini_options]
  17. testpaths = ["tests"]
  18. pythonpath = ["."]