-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 752 Bytes
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
[project]
name = "ecr-image-cleanup-job"
version = "0.3.4"
description = "Kubernetes-aware cleanup job for pruning unused AWS ECR images."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Hans Knecht", email = "contact@hans-knecht.com" }]
dependencies = [
"boto3>=1.26.98",
"kubernetes>=28.0.0",
"pytz>=2022.7.1",
]
[project.optional-dependencies]
dev = [
"coverage>=7.2.2",
"pytest>=7.2.2",
"pytest-cov>=4.0.0",
"ruff>=0.5.4",
]
[build-system]
requires = ["setuptools>=67"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["main"]
packages = []
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"