-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.05 KB
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
[project]
name = "certbot-dns-local"
version = "1.0.0"
description = "Domain registrar agnostic authenticator plugin for certbot"
readme = "README.md"
license = { text = "Apache License 2.0" }
authors = [
{ name = "B. Blechschmidt", email = "git@blechschmidt.io" }
]
urls = { Homepage = "https://github.com/blechschmidt/certbot-dns-local" }
requires-python = ">=2.7"
dependencies = [
"dnspython",
"zope.interface",
]
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: System Administrators",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Security :: Cryptography",
"Environment :: Plugins",
"Operating System :: POSIX :: Linux"
]
[project.optional-dependencies]
# These extras can be installed via:
# pip install certbot-dns-local[netfilter]
netfilter = [
"NetfilterQueue",
"python-iptables",
"scapy"
]
[project.entry-points."certbot.plugins"]
"dns-local" = "certbot_dns_local.auth:CertbotDNSAuthenticator"