2025-01-14 11:49:43 +08:00
[ project ]
2024-10-30 21:13:59 +08:00
name = "ragflow-sdk"
2025-04-23 12:02:50 +08:00
version = "0.18.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-01-14 11:49:43 +08:00
authors = [
{ name = "Zhichang Yu" , email = "yuzhichang@gmail.com" }
]
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"
dependencies = [
"requests>=2.30.0,<3.0.0" ,
"beartype>=0.18.5,<0.19.0" ,
2025-03-12 19:38:52 +08:00
"pytest>=8.0.0,<9.0.0" ,
"requests-toolbelt>=1.0.0" ,
"python-docx>=1.1.2" ,
"openpyxl>=3.1.5" ,
"python-pptx>=1.0.2" ,
"pillow>=11.1.0" ,
"reportlab>=4.3.1" ,
2025-01-14 11:49:43 +08:00
]
2024-10-30 21:13:59 +08:00
2025-01-14 11:49:43 +08:00
[ project . optional-dependencies ]
test = [
"pytest>=8.0.0,<9.0.0"
]
2025-03-06 20:22:17 +08:00
[ tool . pytest . ini_options ]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')" ,
2025-03-07 17:44:51 +08:00
"wip: marks tests as work in progress (deselect with '-m \"not wip\"')"
2025-03-12 19:38:52 +08:00
]