1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
[project]
dynamic = ["version"]
name = "certbot-dns-hetzner-cloud"
description = "Certbot DNS Plugin for Hetzner Cloud DNS"
keywords = [
"certbot",
"dns",
"hetzner",
"acme",
"letsencrypt"
]
authors = [
{ name = "RĂ¼diger Olschewsky" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"certbot>=2.0",
"tldextract>=5.3.0",
"hcloud>=2.8.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov"
]
[project.urls]
Homepage = "https://github.com/rolschewsky/certbot-dns-hetzner-cloud"
Repository = "https://github.com/rolschewsky/certbot-dns-hetzner-cloud"
[project.entry-points."certbot.plugins"]
dns-hetzner-cloud = "certbot_dns_hetzner_cloud.authenticator:HetznerCloudDNSAuthenticator"
[build-system]
requires = [
"setuptools>=80",
"setuptools_scm[simple]>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
|