2025-05-20 11:24:07 +02:00
|
|
|
[project]
|
2025-06-15 18:47:33 +02:00
|
|
|
name = "DocuMentor"
|
2026-05-30 16:13:22 +02:00
|
|
|
version = "1.7.0"
|
2026-01-02 17:40:03 +01:00
|
|
|
description = "Professionelle XSL-Transformations-Verwaltung und PDF-Generierung"
|
2025-05-20 11:24:07 +02:00
|
|
|
readme = "README.md"
|
2026-01-02 17:40:03 +01:00
|
|
|
license = {text = "MIT"}
|
2026-01-11 16:14:58 +01:00
|
|
|
requires-python = ">=3.13,<3.15"
|
2025-05-20 11:24:07 +02:00
|
|
|
dependencies = [
|
2026-01-11 16:14:58 +01:00
|
|
|
"pydantic-settings>=2.12.0",
|
|
|
|
|
"pyside6>=6.10.1",
|
|
|
|
|
"polars[connectorx,pyarrow]>=1.37.0",
|
2026-02-15 19:51:58 +01:00
|
|
|
"connectorx>=0.4.0",
|
2026-01-11 16:14:58 +01:00
|
|
|
"pydantic-yaml>=1.6.0",
|
2026-01-06 20:58:37 +01:00
|
|
|
"psutil>=6.1.1",
|
2026-03-16 21:15:16 +01:00
|
|
|
"lxml>=6.0.2",
|
2025-05-20 11:24:07 +02:00
|
|
|
]
|
2025-05-23 19:43:08 +02:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
# Extend the `pyproject.toml` file in the parent directory...
|
|
|
|
|
# extend = "../pyproject.toml"
|
|
|
|
|
|
|
|
|
|
# ...but use a different line length.
|
2025-05-23 20:38:19 +02:00
|
|
|
line-length = 120
|
2025-06-15 18:47:33 +02:00
|
|
|
|
2025-12-14 15:16:57 +01:00
|
|
|
# Ignoriere automatisch generierte UI-Dateien
|
|
|
|
|
extend-exclude = ["*_ui.py"]
|
|
|
|
|
|
2025-06-15 18:47:33 +02:00
|
|
|
[dependency-groups]
|
2025-12-11 21:26:13 +01:00
|
|
|
dev = [
|
2026-01-11 16:14:58 +01:00
|
|
|
"ruff>=0.14.11",
|
2026-01-04 20:37:30 +01:00
|
|
|
"pyinstaller>=6.0.0",
|
|
|
|
|
"pillow>=10.0.0",
|
2025-12-11 21:26:13 +01:00
|
|
|
]
|