pyproject.toml 426 B

123456789101112131415161718192021
  1. [project]
  2. name = "long-article-search-agent"
  3. version = "0.1.0"
  4. description = "长文供给寻找 Agent"
  5. requires-python = ">=3.11"
  6. [tool.pytest.ini_options]
  7. asyncio_mode = "auto"
  8. testpaths = ["tests"]
  9. pythonpath = ["."]
  10. [tool.ruff]
  11. target-version = "py311"
  12. line-length = 120
  13. [tool.ruff.lint]
  14. select = ["E", "F", "I", "W"]
  15. ignore = ["E501"]
  16. [tool.ruff.lint.isort]
  17. known-first-party = ["src", "agent", "gateway", "knowhub"]