Port to fabric2; add example config

This commit is contained in:
2024-03-30 21:08:40 -07:00
parent af1c7d6139
commit ac6fae91bd
8 changed files with 649 additions and 0 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "multiball"
dynamic = ["version"]
description = "Run commands accross a set of hosts interactively."
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"