-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
32 lines (25 loc) · 873 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm>=7.0.5", "setuptools-golang"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "dependencies"]
name = "certbot-dns-multi"
description = "Certbot DNS plugin supporting multiple providers, using github.com/go-acme/lego"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
[tool.setuptools]
packages = ["certbot_dns_multi", "certbot_dns_multi._internal", "certbot_dns_multi._internal.bridge"]
[tool.setuptools.dynamic]
version = {attr = "certbot_dns_multi._version.__version__"}
[project.entry-points."certbot.plugins"]
"dns-multi" = "certbot_dns_multi._internal.dns_multi:Authenticator"
[project.optional-dependencies]
dev = [
"black>=22.10.0",
"flake8>=5.0.4"
]
[tool.setuptools_scm]
write_to = "certbot_dns_multi/_version.py"
[tool.black]
line-length = 88