Files
entropymon/pyproject.toml
lukasz@orzechowski.eu 3dd65e9d7d v2.1.0: Pro-level upgrade, GPU processes, users panel, perf fixes
- Gradient bars, braille sparklines, CPU user/sys/iowait breakdown
- Memory buffers/cached/available, disk IOPS, per-interface network
- GPU: VRAM breakdown, process list (NVIDIA+AMD), sparkline history
- GPU: PCIe info, encoder/decoder, power limit, max clocks
- USERS panel: per-user CPU/MEM/procs with login status
- Process table: IO column, tree view (t), sort by IO (i), PID tracking
- Adaptive layout: 3-col (140+), 2-col (80+), 1-col (narrow)
- SYSTEM panel: ctx switches/s, interrupts/s, threads, FDs
- Battery display, temperature mini-bars
- Performance: slow-tick for expensive ops (temps, connections, fdinfo)
- Decouple data update from rendering for responsive navigation
- Stable sort with PID tiebreaker, selection tracked by PID
- Intro disable prompt on 2nd run, mini-splash, --intro flag
- SSH/exotic terminal fallback (ghostty, kitty, alacritty)
- Alternate screen buffer: no clear on exit
- Gitea repo renamed to entropymon
- Published to PyPI

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 16:55:19 +01:00

53 lines
1.6 KiB
TOML

[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "entropymon"
dynamic = ["version"]
description = "Terminal system monitor with GPU support, process management, and multi-language UI"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Electric Entropy Lab", email = "patryk@electricentropy.eu"},
]
keywords = ["monitor", "system", "terminal", "tui", "gpu", "nvidia", "amd", "htop", "glances", "curses"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
dependencies = [
"psutil>=5.9.0",
]
[project.optional-dependencies]
nvidia = ["pynvml>=11.0.0"]
all = ["pynvml>=11.0.0"]
[project.urls]
Homepage = "https://git.electricentropy.eu/ar3dh3l/entropymon"
Repository = "https://git.electricentropy.eu/ar3dh3l/entropymon"
Issues = "https://git.electricentropy.eu/ar3dh3l/entropymon/issues"
[project.scripts]
entropymon = "entropymon.monitor:main"
[tool.setuptools.dynamic]
version = {attr = "entropymon.__version__"}
[tool.setuptools.packages.find]
include = ["entropymon*"]