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

123456789101112131415161718
  1. [tool.poetry]
  2. name = "ragflow-sdk"
  3. version = "0.13.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 = ["Zhichang Yu <yuzhichang@gmail.com>"]
  6. license = "Apache License, Version 2.0"
  7. readme = "README.md"
  8. package-mode = true
  9. [tool.poetry.dependencies]
  10. python = "^3.10"
  11. requests = "^2.30.0"
  12. pytest = "^8.0.0"
  13. [build-system]
  14. requires = ["poetry-core"]
  15. build-backend = "poetry.core.masonry.api"