35 lines
No EOL
892 B
TOML
35 lines
No EOL
892 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=61.0",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "netbox-pve-sync"
|
|
version = "0.2.1"
|
|
authors = [
|
|
{ name = "Aloïs Micard", email = "alois@micard.lu" },
|
|
]
|
|
description = "Synchronize Proxmox Virtual Environment (PVE) information to a NetBox instance"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"pynetbox>=7.4",
|
|
"proxmoxer>=2.2",
|
|
"requests>=2.32",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.creekorful.cloud/creekorful/netbox-pve-sync"
|
|
Issues = "https://git.creekorful.cloud/creekorful/netbox-pve-sync/issues"
|
|
Changelog = "https://git.creekorful.cloud/creekorful/netbox-pve-sync/src/branch/main/Changelog.md"
|
|
|
|
[project.scripts]
|
|
nbpxsync = "netbox_pve_sync:main"
|
|
|
|
[license]
|
|
file = 'LICENSE.txt' |