-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
35 lines (31 loc) · 952 Bytes
/
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
[tool.poetry]
name = "kubesurveyor"
version = "2.0.0"
description = "Good enough Kubernetes namespace visualization tool"
authors = ["Peter Gasper <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/viralpoetry/kubesurveyor"
repository = "https://github.com/viralpoetry/kubesurveyor"
keywords = ["kubernetes", "graphviz", "visualisation"]
include = [
"LICENSE",
]
classifiers = [
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0.2"
graphviz = "^0.20.3"
kubernetes = "^30.1.0"
[tool.poetry.scripts]
kubesurveyor = "kubesurveyor.main:main"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"