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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "certbot-dns-alibabacloud"
version = "0.1.0.dev0"
description = "Alibaba Cloud DNS Authenticator plugin for Certbot"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Zhineng Li" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"acme>=2.0.0",
"certbot>=2.0.0",
"alibabacloud-alidns20150109>=4.0.0",
]
[project.optional-dependencies]
test = [
"pytest",
"mypy",
"ruff",
"tox",
]
[project.entry-points."certbot.plugins"]
dns-alibabacloud = "certbot_dns_alibabacloud._internal.dns_alibabacloud:Authenticator"
[project.urls]
Homepage = "https://git.zhineng.li/certbot_dns_alibabacloud"
[tool.setuptools.packages.find]
where = ["src"]
[tool.tox]
requires = ["tox>=4.19"]
env_list = ["lint", "type", "3.14", "3.13", "3.12", "3.11", "3.10"]
[tool.tox.env_run_base]
description = "run tests under {base_python}"
deps = ["pytest"]
commands = [["pytest"]]
[tool.tox.env.lint]
description = "run ruff check on code base"
skip_install = true
deps = ["ruff"]
commands = [["ruff", "check", "src/"]]
[tool.tox.env.type]
description = "run type check on code base"
skip_install = true
deps = ["mypy"]
commands = [["mypy", "src/"]]
[tool.ruff]
line-length = 100
[tool.mypy]
ignore_missing_imports = true
strict_equality = true
|