compose-viz/pyproject.toml

33 lines
798 B
TOML
Raw Permalink Normal View History

2022-05-08 09:57:04 +02:00
[tool.poetry]
name = "compose-viz"
version = "0.1.0"
2022-05-25 15:29:01 +02:00
description = "A compose file visualization tool that supports compose-spec and allows you to gernerate graph in DOT format or PNG."
2022-05-08 09:57:04 +02:00
authors = ["Xyphuz Wu <xyphuzwu@gmail.com>"]
2022-05-14 16:14:34 +02:00
readme = "README.md"
2022-05-08 09:57:04 +02:00
license = "MIT"
2022-05-14 16:14:34 +02:00
homepage = "https://github.com/compose-viz/compose-viz"
repository = "https://github.com/compose-viz/compose-viz"
include = [
"LICENSE",
]
2022-05-08 09:57:04 +02:00
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.4.1"
2022-05-14 20:28:27 +02:00
PyYAML = "^6.0"
2022-05-16 18:55:57 +02:00
graphviz = "^0.20"
2022-05-16 20:24:04 +02:00
"ruamel.yaml" = "^0.17.21"
2022-05-08 09:57:04 +02:00
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
2022-05-18 17:33:56 +02:00
pre-commit = "^2.19.0"
2022-05-19 09:37:49 +02:00
coverage = "^6.3.3"
2022-05-19 09:29:37 +02:00
pytest-cov = "^3.0.0"
2022-05-08 09:57:04 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2022-05-08 17:03:16 +02:00
[tool.poetry.scripts]
2022-05-14 16:14:34 +02:00
cpv = "compose_viz.cli:start_cli"