40 lines
972 B
TOML
40 lines
972 B
TOML
[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"
|