-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.36 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
48
49
50
51
52
53
54
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "certbot-dns-ispconfig-ddns"
version = "1.0.9"
description = "Obtain certificates using a DNS TXT record for ISPConfig domains with DDNS module tokens"
authors = ["Marcel Hofer <m.hofer117@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/mhofer117/certbot-dns-ispconfig-ddns"
repository = "https://github.com/mhofer117/certbot-dns-ispconfig-ddns"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
"Topic :: System :: Systems Administration"
]
[tool.poetry.plugins."certbot.plugins"]
"dns-ispconfig-ddns" = "certbot_dns_ispconfig_ddns.authenticator:Authenticator"
[tool.poetry.dependencies]
python = "^3.8"
certbot = "*"
requests = "*"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
# testing
pytest = "*"
pytest-md-report = "*"
coverage = "*"
mock = "*"
responses = "*"
# linting
flake8 = "*"
[tool.poetry.group.ci]
optional = true
[tool.poetry.group.ci.dependencies]
genbadge = {extras = ["all"], version = "*"}
[tool.poetry.scripts]
lint = "scripts:lint"
test = "scripts:test"
ci-badges = "scripts:ci_badges"