Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

pyproject.toml 712B

12345678910111213141516171819202122232425
  1. [project]
  2. name = "ragflow-sdk"
  3. version = "0.17.0"
  4. description = "Python client sdk of [RAGFlow](https://github.com/infiniflow/ragflow). RAGFlow is an open-source RAG (Retrieval-Augmented Generation) engine based on deep document understanding."
  5. authors = [
  6. { name = "Zhichang Yu", email = "yuzhichang@gmail.com" }
  7. ]
  8. license = { text = "Apache License, Version 2.0" }
  9. readme = "README.md"
  10. requires-python = ">=3.10,<3.13"
  11. dependencies = [
  12. "requests>=2.30.0,<3.0.0",
  13. "beartype>=0.18.5,<0.19.0",
  14. "pytest>=8.0.0,<9.0.0"
  15. ]
  16. [project.optional-dependencies]
  17. test = [
  18. "pytest>=8.0.0,<9.0.0"
  19. ]
  20. [tool.pytest.ini_options]
  21. markers = [
  22. "slow: marks tests as slow (deselect with '-m \"not slow\"')",
  23. ]