2021-09-28 16:29:27 -04:00
|
|
|
[tool.poetry]
|
|
|
|
name = "checkcert"
|
2021-10-04 14:01:49 -04:00
|
|
|
version = "0.6.0"
|
2021-09-30 15:00:29 -04:00
|
|
|
description = "CLI to check tls cert information and determine validity"
|
|
|
|
authors = ["Alex Kelly <kellya@arachnitech.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/kellya/checkcert"
|
2021-10-04 14:08:12 -04:00
|
|
|
documentation = "https://checkcert.readthedocs.io"
|
2021-09-30 15:00:29 -04:00
|
|
|
license = "MIT"
|
2021-09-28 16:29:27 -04:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
click = "^8.0.1"
|
2021-09-30 12:36:53 -04:00
|
|
|
pyOpenSSL = "^21.0.0"
|
2021-09-28 16:29:27 -04:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
python-semantic-release = "^7.19.2"
|
|
|
|
coverage = "^5.5"
|
|
|
|
pylint = "^2.11.1"
|
|
|
|
pyflakes = "^2.3.1"
|
|
|
|
pytest = "^6.2.5"
|
2021-10-04 12:01:57 -04:00
|
|
|
Sphinx = "^4.2.0"
|
2021-10-04 12:18:43 -04:00
|
|
|
sphinx-rtd-theme = "^1.0.0"
|
2021-10-22 10:57:18 -04:00
|
|
|
mypy = "^0.910"
|
2021-09-28 16:29:27 -04:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2021-09-30 15:00:29 -04:00
|
|
|
checkcert = 'checkcert.checkcert:main'
|
2021-09-28 16:29:27 -04:00
|
|
|
|
|
|
|
[tool.semantic_release]
|
|
|
|
version_variable = [
|
2021-09-28 16:44:52 -04:00
|
|
|
"checkcert/checkcert.py:__version__",
|
2021-09-28 16:29:27 -04:00
|
|
|
"pyproject.toml:version"
|
|
|
|
]
|