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

1234567891011121314151617181920
  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. ]