Initial mm CLI

This commit is contained in:
2026-06-25 11:01:58 +08:00
commit 77c22ab21f
8 changed files with 553 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "mm"
version = "0.1.0"
description = "Terminal GPU status dashboard for SSH machine aliases."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"PyYAML>=6.0",
"rich>=13.7",
]
[project.scripts]
mm = "mm.cli:main"
[tool.setuptools.packages.find]
include = ["mm*"]