- 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
25 lines
687 B
TOML
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"]
|