30 lines
845 B
TOML
30 lines
845 B
TOML
[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"
|
|
dependencies = ["cert-chain-resolver", "cryptography", "tabulate"]
|
|
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]
|
|
cert-deets = "cert_deets:main"
|