2025-10-14 21:06:27 +08:00
[ project ]
name = "ragflow-cli"
2026-05-26 19:45:43 +08:00
version = "0.25.6"
2025-10-14 21:06:27 +08:00
description = "Admin Service's client of [RAGFlow](https://github.com/infiniflow/ragflow). The Admin Service provides user management and system monitoring. "
authors = [ { name = "Lynn" , email = "lynn_inf@hotmail.com" } ]
license = { text = "Apache License, Version 2.0" }
readme = "README.md"
2025-12-09 19:55:25 +08:00
requires-python = ">=3.12,<3.15"
2025-10-14 21:06:27 +08:00
dependencies = [
"requests>=2.30.0,<3.0.0" ,
2025-11-26 11:06:37 +08:00
"beartype>=0.20.0,<1.0.0" ,
2025-10-14 21:06:27 +08:00
"pycryptodomex>=3.10.0" ,
"lark>=1.1.0" ,
2026-03-19 17:06:54 +08:00
"requests-toolbelt>=1.0.0" ,
2025-10-14 21:06:27 +08:00
]
[ dependency-groups ]
test = [
"pytest>=8.3.5" ,
"requests>=2.32.3" ,
]
2026-01-21 18:49:52 +08:00
[ tool . setuptools ]
2026-03-10 10:02:21 +08:00
py-modules = [ "ragflow_cli" , "parser" , "http_client" , "ragflow_client" , "user" ]
2026-01-21 18:49:52 +08:00
2025-10-14 21:06:27 +08:00
[ project . scripts ]
2026-01-17 17:52:38 +08:00
ragflow-cli = "ragflow_cli:main"