-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
104 lines (93 loc) · 2.43 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
authors = [
"ZEISS Digital Innovation Partners",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "ACME client setup based on Certbot for dns-01 challenges via Azure Cloud services"
documentation = "https://zeiss.github.io/acme-dns-azure/"
keywords = [
"acme",
"dns",
"azure",
"certbot",
"letsencrypt",
]
license = "MIT"
name = "acme-dns-azure"
packages = [
{include = "acme_dns_azure"},
]
readme = "README.md"
repository = "https://github.com/ZEISS/acme-dns-azure"
version = "0.4.0"
[tool.poetry_bumpversion.file."acme_dns_azure/___init___.py"]
[tool.poetry.dependencies]
azure-identity = ">=1.14.0"
azure-keyvault-certificates = ">=4.7.0"
azure-keyvault-secrets = ">=4.7.0"
certbot = ">=2"
certbot-dns-azure = ">=2.5.0"
cryptography = ">=42.0.0"
dnspython = ">=2"
python = "^3.8"
pyyaml = ">=3"
requests = ">=2"
strictyaml = ">=1.7.3"
[tool.poetry.group.dev.dependencies]
azure-mgmt-authorization = "*"
black = {version = "^24.2.0", allow-prereleases = true}
coverage = "*"
isort = "*"
mock = "*"
mypy = "*"
pdoc3 = "*"
pytest = "*"
pytest-cov = "*"
tox = ">=4"
types-PyYAML = "*"
types-pytz = "*"
types-requests = "*"
types-simplejson = "*"
types-six = "*"
types-toml = "*"
vcrpy = "*"
[tool.poetry.scripts]
acme-dns-azure = "acme_dns_azure.cli:main"
[tool.mypy]
show_error_codes = true
[tool.pytest.ini_options]
addopts = "-s -v --durations=0"
testpaths = ["tests/app"]
[tool.coverage.run]
branch = true
command_line = "-m pytest --junitxml=test-results/unittests.xml"
omit = [
"tests/*",
"examples/function/*",
]
source = ["acme_dns_azure"]
[tool.coverage.report]
show_missing = true
[tool.coverage.xml]
output = "coverage.xml"
[tool.poetry.urls]
"PyPI" = "https://pypi.org/project/acme-dns-azure/"