Rename to entropymon, restructure as PyPI package

- Renamed systats -> entropymon everywhere (code, logo, config paths)
- New ASCII art logo: ENTROPY MON
- Proper Python package structure: entropymon/{__init__,__main__,monitor}.py
- pyproject.toml with entry_points (pip install -> entropymon command)
- MIT license, README with full docs
- Works: pip install, entropymon CLI, python -m entropymon
- Optional nvidia extra: pip install entropymon[nvidia]
- --version flag added

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lukasz@orzechowski.eu
2026-03-24 01:18:23 +01:00
parent 34797a32d1
commit 25da63dc9e
7 changed files with 188 additions and 18 deletions

52
pyproject.toml Normal file
View File

@@ -0,0 +1,52 @@
[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/systats"
Repository = "https://git.electricentropy.eu/ar3dh3l/systats"
Issues = "https://git.electricentropy.eu/ar3dh3l/systats/issues"
[project.scripts]
entropymon = "entropymon.monitor:main"
[tool.setuptools.dynamic]
version = {attr = "entropymon.__version__"}
[tool.setuptools.packages.find]
include = ["entropymon*"]