-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 974 Bytes
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
[project]
name = "certbot-dns-synergy-wholesale"
dynamic = ["version"]
description = "A Synergy Wholesale DNS plugin for Cerbot to authenticate and retrieve Lets Encrypt certificates"
authors = [
{ name = "Nicholas Ciechanowski", email = "nicholas@ciech.anow.ski" },
]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"certbot>=5",
"publicsuffixlist>=1.0.2.20250710",
"pytest>=8.4.2",
"ruff>=0.13.1",
"zeep>=4.2.1,<5",
]
[project.urls]
Repository = "https://github.com/ALameLlama/certbot-dns-synergy-wholesale"
[project.entry-points."certbot.plugins"]
dns-synergy-wholesale = "certbot_dns_synergy_wholesale:Authenticator"
[tool.hatch.build.targets.sdist]
include = ["certbot_dns_synergy_wholesale.py"]
[tool.hatch.build.targets.wheel]
include = ["certbot_dns_synergy_wholesale.py"]
[tool.hatch.version]
source = "vcs"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"