multiball/pyproject.toml

22 lines
617 B
TOML

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "multiball"
dynamic = ["version"]
description = "Multi-host parallel execution shell with powerful features."
authors = [{name = "Cassowary", email="cassowary@riseup.net"}]
dependencies = ["tqdm", "yaml-1.3", "prompt_toolkit", "fabric2"]
requires-python = ">=3.8"
readme = {file = "README.txt", content-type = "text/plain"}
license = {text = "LICENSE"}
[tool.pdm.version]
source = "file"
path = "multiball/__init__.py"
[project.scripts]
multiball = "multiball.__main__:main"