-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.46 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
# pyproject.toml
# Python project configuration.
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lego-certbot"
version = "1.0.0"
description = "Lego DNS-01 exec provider script for Certbot authenticator plugins"
authors = ["Callum Dickinson <[email protected]>"]
license = "MIT"
homepage = "https://github.com/Callum027/lego-certbot"
repository = "https://github.com/Callum027/lego-certbot"
documentation = "https://github.com/Callum027/lego-certbot/blob/main/README.md"
keywords = ["certbot", "lego", "letsencrypt", "dns-01"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Systems Administration"
]
readme = "README.md"
packages = [{include = "lego_certbot.py"}]
[tool.poetry.scripts]
lego-certbot = "lego_certbot:main"
[tool.poetry.dependencies]
python = "^3.8.1"
certbot = "*"
importlib-metadata = ">=4.6.0"
[tool.poetry.group.dev.dependencies]
black = "23.1.0"
flake8 = "6.0.0"
isort = "5.12.0"
mypy = "1.1.1"
[tool.black]
line_length = 100
[tool.isort]
profile = "black"
line_length = 100
lines_between_types = 1
remove_redundant_aliases = true
[tool.mypy]
python_version = ["3.8", "3.9", "3.10", "3.11"]
[[tool.mypy.overrides]]
ignore_missing_imports = true