28 lines
703 B
TOML
28 lines
703 B
TOML
[tool.poetry]
|
|
name = "compose-viz"
|
|
version = "0.1.0"
|
|
description = "A docker-compose/podman-compose graph visualization tool that allows you to gernerate graph in DOT format or PNG."
|
|
authors = ["Xyphuz Wu <xyphuzwu@gmail.com>"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
homepage = "https://github.com/compose-viz/compose-viz"
|
|
repository = "https://github.com/compose-viz/compose-viz"
|
|
include = [
|
|
"LICENSE",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
typer = "^0.4.1"
|
|
PyYAML = "^6.0"
|
|
graphviz = "^0.20"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.1.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
cpv = "compose_viz.cli:start_cli"
|