Minor changes

This commit is contained in:
Loïc Guégan 2023-10-25 13:22:46 +02:00
parent cfc1be0333
commit 97b82ce849
2 changed files with 2 additions and 23 deletions

View file

@ -1,25 +1,4 @@
import platform
from typing import NamedTuple
class SystemInformations(NamedTuple):
"""System Informations Data Structure"""
hostname: str
arch: str
os: str
release: str
def sysinfos_create():
global SYSINFOS
uname = platform.uname()
SYSINFOS=SystemInformations(
uname.node,
uname.machine,
uname.system,
uname.release
)
print(SYSINFOS)
def main():
print("It works!")
sysinfos_create()

View file

@ -1,7 +1,7 @@
[project]
name = "clusterman"
dynamic = ["version"]
dependencies = []
dependencies = ["psutil"]
description = "Simple cluster management utility"
readme = "README.md"