1
0
mirror of https://github.com/cmur2/kube-stale-resources.git synced 2025-01-24 03:27:06 +01:00
kube-stale-resources/pyproject.toml

30 lines
738 B
TOML
Raw Normal View History

[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "kube-stale-resources"
version = "1.0.0"
description = "Utility augmenting 'kubectl diff' to detect stale resources in Kubernetes clusters between local YAML manifests (target state) and the cluster (live state)."
authors = ["Christian Nicolai"]
license = "Apache-2.0"
homepage = "https://dev.mycrobase.de/gitea/cn/kube-stale-resources"
[tool.poetry.dependencies]
2024-09-27 21:50:23 +02:00
python = "^3.9"
2024-08-08 02:12:40 +00:00
pyyaml = "6.0.2"
2024-08-08 08:55:36 +00:00
requests = "~2.32.0"
[tool.poetry.dev-dependencies]
2024-12-26 01:14:07 +00:00
mypy = "1.14.0"
2024-09-26 00:58:54 +00:00
pylint = "~3.3.0"
2024-03-28 02:01:23 +00:00
rope = "~1.13.0"
types-PyYAML = "~6.0"
2022-06-30 02:31:21 +00:00
types-requests = "~2.28"
2022-04-01 00:57:39 +02:00
toml = "~0.10"
2024-11-14 02:12:23 +00:00
yapf = "~0.43.0"
[tool.yapf]
based_on_style = "pep8"
column_limit = 120