32 lines
826 B
TOML
32 lines
826 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "netbox-vmware-importer"
|
|
version = "0.1.2"
|
|
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 = [
|
|
"pyvmomi>=8.0.3",
|
|
"cryptography>=42.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["netbox_vmware_importer*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
netbox_vmware_importer = ["templates/**/*.html"]
|