Files

18 lines
365 B
TOML

[project]
name = "wissensdatenbank"
version = "0.1.0"
description = "ETL-Pipeline fuer LLM/RAG: Confluence/Web/PDF -> klassifiziertes Markdown"
requires-python = ">=3.11"
[tool.ruff]
line-length = 120
target-version = "py311"
exclude = [".venv", "data"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]