Spaces:
Running
Running
File size: 481 Bytes
5ea3240 8cfc5e2 5ea3240 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | [build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ragforge"
version = "2.0.0"
description = "Production-style agentic RAG demo for Hugging Face Spaces"
requires-python = ">=3.11"
dependencies = []
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py311"
|