parch-profiler/pyproject.toml
2024-09-01 14:45:08 +03:30

26 lines
582 B
TOML

[tool.poetry]
name = "parch_profiler"
version = "0.1.0"
description = "parch linux basic congiuration manager"
authors = ["Your Name <you@example.com>"]
license = "GNU GENERAL PUBLIC LICENSE v3"
readme = "README.md"
packages = [
{ include = "parch_profiler", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.12.4"
plumbum = "^1.8.3"
toml = "^0.10.2"
typing-validation = "^1.2.11.post4"
vlidt = "^0.2.1"
[tool.poetry.scripts]
parch-profiler = "parch_profiler.cli:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"