您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pyproject.toml 605B

1234567891011121314151617181920
  1. [project]
  2. name = "ragflow-sdk"
  3. version = "0.15.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. ]