feat: integriertes Dokumentations-Wiki für NetBox hinzufügen

- Markdown-Dokumentationen direkt in NetBox erstellen
- Dokumente Standorten, Racks, Geräten, VMs und Clustern zuordnen
- DOCX-, XLSX-, PDF-, Markdown- und Textimporte unterstützen
- REST-API, Suche, Berechtigungen und Änderungsprotokoll ergänzen
- Installation, Konfiguration und Importgrenzen dokumentieren
This commit is contained in:
2026-07-22 10:23:58 +02:00
commit ab0ed26ad3
24 changed files with 764 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-documentation"
version = "0.1.0"
description = "Integrated Markdown wiki and office document importer for NetBox"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"mammoth>=1.8,<2",
"openpyxl>=3.1,<4",
"pypdf>=5,<7",
"tabulate>=0.9,<1",
]
[project.optional-dependencies]
test = ["pytest>=8", "pytest-django>=4.9"]
[tool.setuptools.packages.find]
include = ["netbox_documentation*"]
[tool.setuptools.package-data]
netbox_documentation = ["templates/**/*.html", "static/**/*"]
[tool.pytest.ini_options]
python_files = ["test_*.py"]