Clean-up module
This commit is contained in:
parent
552965a90d
commit
5fc6a028ec
9 changed files with 826 additions and 3 deletions
34
pyproject.toml
Normal file
34
pyproject.toml
Normal file
|
@ -0,0 +1,34 @@
|
|||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=61.0",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "netbox-pve-sync"
|
||||
version = "0.1.0"
|
||||
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"
|
||||
|
||||
[project.scripts]
|
||||
nbpxsync = "netbox_pve_sync:main"
|
||||
|
||||
[license]
|
||||
file = 'LICENSE.txt'
|
Loading…
Add table
Add a link
Reference in a new issue