-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (41 loc) · 1.32 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
45
46
47
[tool.poetry]
name = "certbot-dns-cloudns"
version = "0.6.0"
description = "ClouDNS DNS Authenticator plugin for Certbot"
authors = ["Simon Marti <[email protected]>"]
license = "Unlicense"
repository = "https://github.com/inventage/certbot-dns-cloudns"
readme = "README.rst"
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: The Unlicense (Unlicense)',
'Intended Audience :: System Administrators',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Environment :: Plugins',
'Operating System :: OS Independent',
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
acme = ">=2.11.0"
certbot = ">=2.11.0"
cloudns-api = "0.9.3"
dnspython = ">=2.3.0"
"zope.interface" = ">=5.4.0"
[tool.poetry.plugins."certbot.plugins"]
dns-cloudns = "certbot_dns_cloudns._internal.authenticator:Authenticator"
[tool.poetry.dev-dependencies]
isort = "5.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]