-
Notifications
You must be signed in to change notification settings - Fork 89
/
pyproject.toml
112 lines (103 loc) · 2.72 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
105
106
107
108
109
110
111
112
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dnsrobocert"
version = "3.25.0"
description = "A tool to manage your DNS-challenged TLS certificates"
license = "MIT"
keywords = [
"dnsrobocert"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix", "Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities"
]
authors = [
"Adrien Ferrand <[email protected]>"
]
readme = "README.rst"
include = [
"src/dnsrobocert/schema.yml"
]
repository = "https://github.com/adferrand/dnsrobocert"
homepage = "https://dnsrobocert.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.8"
acme = "^2"
certbot = "^2"
dns-lexicon = { version = "^3.14.0", extras = [ "full" ] }
importlib-resources = "^6"
# Workaround for: https://github.com/python-poetry/poetry-plugin-export/issues/183
urllib3 = ">=1.25.4,<1.27"
# Optional deps on dns-lexicon
zeep = "*"
xmltodict = "*"
softlayer = "*"
localzone = "*"
boto3 = ">=1.28"
# --
cryptography = ">=2"
cffi = ">=1"
lxml = ">=4"
dnspython = ">=2.1.0"
jsonschema = ">=3"
pem = ">=20"
pyopenssl = ">=19"
pyyaml = ">=5"
schedule = ">=0"
coloredlogs = ">=14"
colorama = ">=0"
tldextract = ">=3"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
flake8-pyproject = "*"
mypy = "*"
packaging= "*"
pytest = "*"
pytest-cov = "*"
pytest-sugar = "*"
isort = "*"
tox = "*"
types-PyYAML = "*"
types-pyOpenSSL = "*"
types-requests = "*"
types-setuptools = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx_rtd_theme = "*"
toml = "*"
[tool.poetry.scripts]
dnsrobocert = "dnsrobocert.core.main:main"
[tool.pytest.ini_options]
junit_family = "xunit2"
addopts = "-p no:legacypath"
filterwarnings = [
"ignore:Unverified HTTPS request is being made:urllib3.exceptions.InsecureRequestWarning",
"ignore:X509Extension support in pyOpenSSL is deprecated:DeprecationWarning",
"ignore:CSR support in pyOpenSSL is deprecated:DeprecationWarning",
]
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "E501", "E231", "E221"]