feat: add NetBox plugin store
CI / php-store (push) Waiting to run
CI / python-components (push) Waiting to run

This commit is contained in:
2026-08-24 20:51:25 +02:00
commit f36d6be511
135 changed files with 15160 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-plugin-store"
version = "0.1.0"
description = "A secure NetBox 4.6 plugin lifecycle client for the MrBlake Plugin Store"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [{ name = "MrBlake" }]
dependencies = [
"packaging>=24.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://git.mrblake.cc"
[tool.setuptools.packages.find]
include = ["netbox_plugin_store*"]
[tool.setuptools.package-data]
netbox_plugin_store = [
"templates/netbox_plugin_store/*.html",
"migrations/*.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"