-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.09 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "certbot-dns-ispconfig"
version = "0.3.0"
description = "ispconfig DNS Authenticator plugin for Certbot"
authors = [
{ name = "Matthias Bilger", email = "[email protected]" }
]
license = { text = "Apache-2.0" }
readme = "README.rst"
homepage = "https://github.com/m42e/certbot-dns-ispconfig"
keywords = ["certbot", "dns", "ispconfig", "authenticator", "plugin"]
dependencies = [
"python>=3.8",
"acme>=2.11.0",
"certbot>=2.11.0",
"setuptools",
"requests",
"mock",
"requests-mock"
]
[tool.poetry]
name = "certbot-dns-ispconfig"
version = "0.3.0"
description = "ispconfig DNS Authenticator plugin for Certbot"
authors = ["Matthias Bilger ‹[email protected]>"]
license = "Apache License 2.0"
readme = "README, rst"
homepage = "https://github.com/m42e/certbot-dns-ispconfig"
keywords = ["certbot", "dns", "ispconfig", "authenticator", "plugin"]
[tool.poetry.dependencies]
python = ">=3.8"
acme = ">=2.11.0"
certbot = ">=2.11.0"
setuptools = "*"
requests = "*"
mock = "*"
requests-mock = "*"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"