This commit is contained in:
2026-07-10 09:15:15 +02:00
parent b80f501d5a
commit 9d5ea53b5c
18 changed files with 2122 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-vmware-importer"
version = "0.1.0"
description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox."
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Internal NetBox Team"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"netbox>=4.4,<4.6",
"pyvmomi>=8.0.3",
"cryptography>=42.0",
]
[tool.setuptools.packages.find]
include = ["netbox_vmware_importer*"]
[tool.setuptools.package-data]
netbox_vmware_importer = ["templates/**/*.html"]