2025-01-14 11:49:43 +08:00
[ project ]
2024-10-30 21:13:59 +08:00
name = "ragflow-sdk"
2025-05-23 18:18:58 +08:00
version = "0.19.0"
2024-10-30 21:13:59 +08:00
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."
2025-04-29 16:53:57 +08:00
authors = [ { name = "Zhichang Yu" , email = "yuzhichang@gmail.com" } ]
2025-01-14 11:49:43 +08:00
license = { text = "Apache License, Version 2.0" }
2024-06-03 20:14:47 +08:00
readme = "README.md"
2025-01-14 11:49:43 +08:00
requires-python = ">=3.10,<3.13"
2025-04-29 16:53:57 +08:00
dependencies = [ "requests>=2.30.0,<3.0.0" , "beartype>=0.18.5,<0.19.0" ]
[ dependency-groups ]
test = [
"hypothesis>=6.131.9" ,
2025-03-12 19:38:52 +08:00
"openpyxl>=3.1.5" ,
"pillow>=11.1.0" ,
2025-04-29 16:53:57 +08:00
"pytest>=8.3.5" ,
"python-docx>=1.1.2" ,
"python-pptx>=1.0.2" ,
2025-03-12 19:38:52 +08:00
"reportlab>=4.3.1" ,
2025-04-29 16:53:57 +08:00
"requests>=2.32.3" ,
"requests-toolbelt>=1.0.0" ,
2025-01-14 11:49:43 +08:00
]
2024-10-30 21:13:59 +08:00
2025-03-06 20:22:17 +08:00
[ tool . pytest . ini_options ]
2025-05-08 19:22:52 +08:00
markers = [
"p1: high priority test cases" ,
"p2: medium priority test cases" ,
"p3: low priority test cases" ,
]