This commit is contained in:
deamonkai
2026-01-23 12:11:21 -06:00
commit fc94008530
16494 changed files with 2974672 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "certctl"
version = "0.1.0"
description = "Certificate automation helpers for NetScaler Console / ADC"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "Michael Molloy"}]
dependencies = [
"requests>=2.31",
]
[project.scripts]
certctl-new = "certctl.scripts.keycsr_console:main"
[tool.setuptools]
packages = ["certctl", "certctl.scripts", "certctl.ca"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]