b29fa633cb
Projekt unter MIT License veröffentlicht: - LICENSE-Datei mit MIT-Lizenztext - LICENSES.md mit detaillierter Lizenzanalyse aller Dependencies - THIRD_PARTY_LICENSES.txt mit allen verwendeten Bibliotheken - README.md mit vollständiger Projektdokumentation - pyproject.toml mit Lizenz-Metadaten aktualisiert Lizenz-Übersicht: - PySide6: LGPL-3.0/GPL-2.0/GPL-3.0 (kompatibel mit MIT) - Pydantic, Polars, pyqtdarktheme: MIT - PyArrow: Apache 2.0 - Saxon-HE: MPL-2.0 (externes Tool) - Apache FOP: Apache 2.0 (externes Tool) Keine Einschränkungen durch Dependencies - MIT License möglich. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
664 B
TOML
30 lines
664 B
TOML
[project]
|
|
name = "DocuMentor"
|
|
version = "0.1.0"
|
|
description = "Professionelle XSL-Transformations-Verwaltung und PDF-Generierung"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pyqtdarktheme>=2.1.0",
|
|
"pydantic-settings>=2.9.1",
|
|
"pyside6>=6.9.1",
|
|
"polars[connectorx,pyarrow]>=1.31.0",
|
|
"pydantic-yaml>=1.5.1",
|
|
]
|
|
|
|
[tool.ruff]
|
|
# Extend the `pyproject.toml` file in the parent directory...
|
|
# extend = "../pyproject.toml"
|
|
|
|
# ...but use a different line length.
|
|
line-length = 120
|
|
|
|
# Ignoriere automatisch generierte UI-Dateien
|
|
extend-exclude = ["*_ui.py"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.14.8",
|
|
]
|