cert-deets/pyproject.toml

30 lines
845 B
TOML
Raw Permalink Normal View History

2024-02-23 08:09:14 +00:00
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cert-deets"
version = "1.0"
authors = [{ name = "Scott Wallace", email = "scott@wallace.sh" }]
description = "Show TLS certificate details for a given endpoint"
keywords = ["tls", "certificate", "python"]
classifiers = ["Programming Language :: Python :: 3"]
readme = "README.md"
2024-02-27 15:43:51 +00:00
dependencies = ["cert-chain-resolver", "cryptography", "tabulate"]
2024-02-23 08:09:14 +00:00
requires-python = ">=3.11"
[project.urls]
Homepage = "https://git.wallace.sh/scott/cert-deets/wiki"
Source = "https://git.wallace.sh/scott/cert-deets"
Issues = "https://git.wallace.sh/scott/cert-deets/issues"
[project.optional-dependencies]
dev = ["black", "pylint"]
tests = ["pytest", "pytest-cov"]
[tool.black]
target-version = ["py311"]
[project.scripts]
2024-09-27 12:01:13 +01:00
cert-deets = "cert_deets:main"