-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
43 lines (37 loc) · 1.31 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
[tool.poetry]
name = "certbot-dns-godaddy"
version = "2.8.0"
description = "A certbot plugin that implements letsencrypt dns wildcard support for godaddy using lexicon"
authors = ["Dustyn Gibson <miigotu@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/miigotu/certbot-dns-godaddy"
packages = [{include = "certbot_dns_godaddy.py"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
certbot = ">=2.8.0"
dns-lexicon = ">=3.14.0"
[tool.poetry.dev-dependencies]
isort = "^5.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."certbot.plugins"]
"dns-godaddy" = "certbot_dns_godaddy:Authenticator"