89ebb6c61e
release / release (push) Successful in 14s
CPU, GPU (model/driver/VBIOS/VRAM/PCIe), motherboard/BIOS, RAM (total + modules), storage (real disks only), kernel, and display server. - core/inventory.py: collect() + Markdown/JSON/text renderers + dict round-trip; stdlib + nvidia-smi/lspci/lsblk/dmidecode, all degrading gracefully - cli: `rigdoctor inventory` (--json / --markdown / -o) - gui: Inventory tab (fills the last empty tab) with Copy-as-Markdown, Save, and "Run with admin" (pkexec) for dmidecode board/BIOS/RAM details - tests for collect/render/round-trip; remove unused placeholder-page helper Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
603 B
TOML
24 lines
603 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "rigdoctor"
|
|
version = "0.3.0"
|
|
description = "Modular hardware monitoring & crash diagnostics for Linux gamers."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
# Core/CLI/daemon are stdlib-only by design (D2). The GUI/tray modules will add
|
|
# PySide6 via an optional extra when those land.
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
gui = ["PySide6"]
|
|
|
|
[project.scripts]
|
|
rigdoctor = "rigdoctor.cli:main"
|
|
rigdoctor-gui = "rigdoctor.gui.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|