Lizenzierung: MIT License und Dokumentation

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>
This commit is contained in:
2026-01-02 17:40:03 +01:00
parent 12fe395ac0
commit b29fa633cb
5 changed files with 662 additions and 1 deletions
+188
View File
@@ -0,0 +1,188 @@
================================================================================
THIRD PARTY LICENSES
================================================================================
DocuMentor verwendet die folgenden Open-Source-Bibliotheken und Tools.
Vielen Dank an alle Entwickler und Maintainer dieser Projekte!
================================================================================
Python-Abhängigkeiten
================================================================================
1. PySide6
Version: >=6.9.1
Lizenz: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
Webseite: https://www.qt.io/qt-for-python
GitHub: https://github.com/qt/pyside-pyside-setup
Beschreibung: Qt for Python - Official Python bindings for Qt
Copyright: Copyright (C) The Qt Company Ltd.
2. Pydantic
Version: >=2.9.1
Lizenz: MIT License
Webseite: https://pydantic.dev
GitHub: https://github.com/pydantic/pydantic
Beschreibung: Data validation using Python type hints
Copyright: Copyright (c) 2017 to present Pydantic Services Inc.
3. Pydantic-Settings
Version: >=2.9.1
Lizenz: MIT License
GitHub: https://github.com/pydantic/pydantic-settings
Beschreibung: Settings management using Pydantic
Copyright: Copyright (c) 2023 Pydantic Services Inc.
4. Pydantic-YAML
Version: >=1.5.1
Lizenz: MIT License
GitHub: https://github.com/NowanIlfideme/pydantic-yaml
Beschreibung: YAML support for Pydantic models
Copyright: Copyright (c) 2020 Anatoly Makarevich
5. Polars
Version: >=1.31.0
Lizenz: MIT License
Webseite: https://pola.rs
GitHub: https://github.com/pola-rs/polars
Beschreibung: Lightning-fast DataFrame library
Copyright: Copyright (c) 2025 Ritchie Vink
6. ConnectorX (via Polars)
Lizenz: MIT License
GitHub: https://github.com/sfu-db/connector-x
Beschreibung: Fast database connector for DataFrames
Copyright: Copyright (c) 2021 SFU Database Group
7. PyArrow (via Polars)
Lizenz: Apache License 2.0
Webseite: https://arrow.apache.org/docs/python/
GitHub: https://github.com/apache/arrow
Beschreibung: Python library for Apache Arrow
Copyright: Copyright (c) 2016-2025 The Apache Software Foundation
8. pyqtdarktheme
Version: >=2.1.0
Lizenz: MIT License
GitHub: https://github.com/5yutan5/PyQtDarkTheme
Beschreibung: A flat dark theme for PySide and PyQt
Copyright: Copyright (c) 2021 Yunosuke Ohsugi
9. Ruff (Development)
Version: >=0.14.8
Lizenz: MIT License
GitHub: https://github.com/astral-sh/ruff
Beschreibung: An extremely fast Python linter and code formatter
Copyright: Copyright (c) 2022 Charlie Marsh
================================================================================
Externe Tools (nicht eingebettet)
================================================================================
Diese Tools werden als externe Programme aufgerufen und sind nicht
Bestandteil der DocuMentor-Distribution. Sie müssen separat installiert werden.
1. Saxon-HE (Home Edition)
Lizenz: Mozilla Public License 2.0 (MPL-2.0)
Webseite: https://www.saxonica.com/
GitHub: https://github.com/Saxonica/Saxon-HE
Beschreibung: XSLT 3.0 and XQuery 3.1 processor
Copyright: Copyright (c) Saxonica Limited
Hinweis: Für XSLT-Transformationen verwendet
2. Apache FOP (Formatting Objects Processor)
Lizenz: Apache License 2.0
Webseite: https://xmlgraphics.apache.org/fop/
Beschreibung: XSL-FO to PDF converter
Copyright: Copyright (c) 1999-2025 The Apache Software Foundation
Hinweis: Für PDF-Generierung verwendet
3. diff-pdf
Lizenz: GPL-2.0 (vermutlich)
GitHub: https://github.com/vslavik/diff-pdf
Beschreibung: Tool for visually comparing PDF files
Hinweis: Optional für PDF-Vergleich verwendet
================================================================================
Lizenztexte
================================================================================
--------------------------------------------------------------------------------
MIT License
--------------------------------------------------------------------------------
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
--------------------------------------------------------------------------------
Apache License 2.0
--------------------------------------------------------------------------------
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--------------------------------------------------------------------------------
LGPL-3.0 / GPL-2.0 / GPL-3.0 (PySide6)
--------------------------------------------------------------------------------
PySide6 ist unter LGPL-3.0, GPL-2.0 oder GPL-3.0 lizenziert.
Die vollständigen Lizenztexte finden Sie unter:
LGPL-3.0: https://www.gnu.org/licenses/lgpl-3.0.html
GPL-2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
GPL-3.0: https://www.gnu.org/licenses/gpl-3.0.html
Weitere Informationen: https://doc.qt.io/qtforpython-6/licenses.html
--------------------------------------------------------------------------------
Mozilla Public License 2.0 (Saxon-HE)
--------------------------------------------------------------------------------
Der vollständige Lizenztext der Mozilla Public License 2.0 ist verfügbar unter:
https://www.mozilla.org/en-US/MPL/2.0/
================================================================================
HINWEISE
================================================================================
1. PySide6 (LGPL-3.0):
DocuMentor verwendet PySide6 über dynamisches Linking (Python import).
Nutzer können die PySide6-Version über pip austauschen.
Der Quellcode von DocuMentor muss nicht unter LGPL veröffentlicht werden.
2. Externe Tools:
Saxon-HE, Apache FOP und diff-pdf sind separate Programme, die von
DocuMentor aufgerufen werden, aber nicht in die Distribution eingebettet sind.
Nutzer müssen diese Tools selbst installieren.
3. Aktualisierungen:
Bitte überprüfen Sie regelmäßig die Lizenzen der verwendeten Bibliotheken,
da sich diese ändern können.
================================================================================
Stand: Januar 2025
Erstellt für: DocuMentor v0.1.0
================================================================================