23 lines
481 B
TOML
23 lines
481 B
TOML
[project]
|
|
name = "k8s-tool"
|
|
version = "0.1.0"
|
|
description = "Interactive kubectl helper tool"
|
|
authors = [
|
|
{name = "vy.boyko"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = "^3.9"
|
|
dependencies = [
|
|
"questionary (>=2.1.1,<3.0.0)",
|
|
"kubernetes (>=34.1.0,<35.0.0)",
|
|
"rich (>=14.2.0,<15.0.0)",
|
|
"pyyaml (>=6.0.3,<7.0.0)"
|
|
]
|
|
|
|
[project.scripts]
|
|
k8s-tool = "k8s_tool.main:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|