-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
95 lines (80 loc) · 2.32 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
[tool.poetry]
name = "certbot-aws-store"
version = "0.4.2.post0"
description = "Generate Let's Encrypt certificates and store into AWS"
authors = ["John Preston <[email protected]>"]
maintainers = ["John Preston <[email protected]>"]
keywords = ["compose-x", "aws", "certbot", "ACME"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
readme = "README.rst"
exclude = ["*.pyc", "*~", "*pycache*"]
[tool.poetry.dependencies]
python = "^3.9"
compose-x-common = "^1.4"
pynamodb = "^5.5.1"
argparse = "^1.4.0"
pyOpenSSL = "^22.0.0"
b-dynamodb-common = "^0.4.1"
certbot = {version = "^2.3", optional = true }
certbot-dns-route53 = { version = "^2.3", optional = true }
troposphere = { version = "^4.8.0", optional = true }
publicsuffixlist = "^0.10"
dacite = "^1.8.1"
[tool.poetry.extras]
init = ["certbot", "certbot-dns-route53", "troposphere"]
certbot = ["certbot", "certbot-dns-route53"]
[tool.poetry.dev-dependencies]
black = "^24.4"
isort = "^5.10"
pre-commit = "^3.7"
pyupgrade = "^3.3"
mypy-boto3-s3 = "^1.24.0"
mypy-boto3-acm = "^1.24.0"
mypy-boto3-secretsmanager = "^1.24.11"
tbump = "^6.9.0"
[tool.poetry.scripts]
certbot-aws-store = "certbot_aws_store.cli:cli_entrypoint"
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = "^0.25.6"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = "kelvin"
[tool.tbump]
github_url = "https://github.com/ews-network/certbot-aws-store"
[tool.tbump.version]
current = "0.4.2.post0"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(?:(?P<rc>[\S]+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.file]]
src = "certbot_aws_store/__init__.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"