Files
Netbox-Better-IPs/pyproject.toml
T
MrBlake 24e59ee9c0 feat: automatische Prefix-Zuordnung und IP-Netzübersicht hinzufügen
- fehlende Prefixe beim Speichern von IP-Adressen automatisch erstellen
- VRF, Mandant, Standort und Lokation übernehmen
- bestehende IP-Adressen per Management-Command abgleichen
- filterbare IP-Netzübersicht für Regionen, Standorte und Mandanten ergänzen
- NetBox 4.6.5 unterstützen
2026-07-23 11:06:50 +02:00

25 lines
687 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-better-ips"
version = "1.0.0"
description = "Automatic prefix creation and an organization-aware IP network overview for NetBox 4.6"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Apache-2.0"}
authors = [{name = "NetBox Better IPs contributors"}]
dependencies = []
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[tool.setuptools.packages.find]
include = ["netbox_better_ips*"]
[tool.setuptools.package-data]
netbox_better_ips = ["templates/**/*.html"]