9fe967f0b2
Release / build (push) Has been cancelled
- Auto-pick BMCs from the dhcpsrv lease table; resolve SDS by neighbouring MAC - Preflight host-state table (power/work, BMC/UEFI/FPGA) before collection - Single flat tar.gz bundle (no nested per-host archives); auto-open output dir - BMC default creds admin/V36man; SDS commands run as root; clearer SSH error hints - Pin paramiko<4 (5.x dropped ssh-rsa host keys that YADRO BMCs require) - Timestamped crash reports under crashlogs/
29 lines
910 B
TOML
29 lines
910 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vrcx"
|
|
description = "Vegman Remote Collect (extended) — diagnostic log collector for YADRO Vegman servers (BMC + SDS host)."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "engelgardt" }]
|
|
# paramiko pinned <4: 4.x/5.x dropped ssh-rsa (SHA-1) host keys, which YADRO
|
|
# Vegman BMCs only offer — newer paramiko can't negotiate a host key with them.
|
|
dependencies = ["rich>=13", "paramiko>=3,<4"]
|
|
dynamic = ["version"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.engelgardt23.ru/engel/vrcx"
|
|
Issues = "https://git.engelgardt23.ru/engel/vrcx/issues"
|
|
|
|
[project.scripts]
|
|
vrcx = "vrcx.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "vrcx.__version__" }
|