ragflow/sdk/python/pyproject.toml
刘安 8a84d1048c
TEST: Added test cases for Delete Dataset HTTP API (#5770)
### What problem does this PR solve?

1. cover dataset deletion endpoints
2. format code with ruff

### Type of change

- [x] add testcases
- [ ] style
2025-03-07 17:44:51 +08:00

26 lines
788 B
TOML

[project]
name = "ragflow-sdk"
version = "0.17.0"
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",
"pytest>=8.0.0,<9.0.0"
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0,<9.0.0"
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"wip: marks tests as work in progress (deselect with '-m \"not wip\"')"
]