pyproject.toml 396 B

1234567891011121314151617
  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. ]
  14. [tool.pytest.ini_options]
  15. testpaths = ["tests"]
  16. pythonpath = ["."]