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 788B

1234567891011121314151617181920212223242526
  1. [project]
  2. name = "ragflow-sdk"
  3. version = "0.17.1"
  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. "wip: marks tests as work in progress (deselect with '-m \"not wip\"')"
  24. ]