You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 943B

1234567891011121314151617181920212223242526272829303132
  1. [project]
  2. name = "ragflow-sdk"
  3. version = "0.18.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. "requests-toolbelt>=1.0.0",
  16. "python-docx>=1.1.2",
  17. "openpyxl>=3.1.5",
  18. "python-pptx>=1.0.2",
  19. "pillow>=11.1.0",
  20. "reportlab>=4.3.1",
  21. ]
  22. [project.optional-dependencies]
  23. test = [
  24. "pytest>=8.0.0,<9.0.0"
  25. ]
  26. [tool.pytest.ini_options]
  27. markers = [
  28. "slow: marks tests as slow (deselect with '-m \"not slow\"')",
  29. "wip: marks tests as work in progress (deselect with '-m \"not wip\"')"
  30. ]