mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-08-15 04:01:06 +00:00

### What problem does this PR solve? - Update Docker image version badges and references from v0.19.0 to v0.19.1 - Modify version mentions in all localized README files (id, ja, ko, pt_br, tzh, zh) - Update version in docker/README.md and related documentation files - Includes updates to Helm values and Python SDK dependencies ### Type of change - [x] Documentation Update
32 lines
899 B
TOML
32 lines
899 B
TOML
[project]
|
|
name = "ragflow-sdk"
|
|
version = "0.19.1"
|
|
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."
|
|
authors = [{ name = "Zhichang Yu", email = "yuzhichang@gmail.com" }]
|
|
license = { text = "Apache License, Version 2.0" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.13"
|
|
dependencies = ["requests>=2.30.0,<3.0.0", "beartype>=0.18.5,<0.19.0"]
|
|
|
|
|
|
[dependency-groups]
|
|
test = [
|
|
"hypothesis>=6.131.9",
|
|
"openpyxl>=3.1.5",
|
|
"pillow>=11.1.0",
|
|
"pytest>=8.3.5",
|
|
"python-docx>=1.1.2",
|
|
"python-pptx>=1.0.2",
|
|
"reportlab>=4.3.1",
|
|
"requests>=2.32.3",
|
|
"requests-toolbelt>=1.0.0",
|
|
]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"p1: high priority test cases",
|
|
"p2: medium priority test cases",
|
|
"p3: low priority test cases",
|
|
]
|