Initial commit: Basic CLI and checks

Certo supports polling one or several hostnames.
Output can be human-readable or JSON.
This commit is contained in:
2022-10-09 20:47:57 +10:30
commit ee12fe59de
15 changed files with 474 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[tool.poetry]
name = "certo"
version = "0.1.0"
description = ""
authors = ["Guilhem MARION <gmarion@netc.fr>"]
[tool.poetry.dependencies]
python = "^3.10"
python-dateutil = "^2.8.2"
docopt = "^0.6.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = { extras = ["d"], version = "^22.10.0" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"