moved code to subdir cpu_governor_auto_adjust

This commit is contained in:
2025-03-04 09:53:42 +01:00
parent 4ee533df2c
commit 5077c230a3
18 changed files with 48 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
__pycache__/
triggers/.data
cpu_governor_auto_adjust/triggers/.data
.vscode/
dist/
cpu_governor_auto_adjust.egg-info/
+44
View File
@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['cpu_governor_auto_adjust.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='cpu_governor_auto_adjust',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='cpu_governor_auto_adjust',
)
@@ -1,5 +1,5 @@
from logger import getLogger
from config import Config
from cpu_governor_auto_adjust.config import Config
class AppClass:
+2 -2
View File
@@ -1,6 +1,6 @@
[project]
name = "cpu_governor_auto_adjust"
version = "0.1.0"
version = "0.1.1"
description = "This application has been developed to automatically change cpu governor based on certain triggers."
authors = [
{ name = "Martin Reurekas", email = "martin@semrks.nl" }
@@ -31,4 +31,4 @@ cpu_governor_auto_adjust = "cpu_governor_auto_adjust.cpu_governor_auto_adjust:ma
[project.urls]
Homepage = "http://gitea.semrks.nl:8418/mreurekas/cpu_governor_auto_adjust"
Repository = "http://gitea.semrks.nl:8418/mreurekas/cpu_governor_auto_adjust.git"
Issues = "http://gitea.semrks.nl:8418/mreurekas/cpu_governor_auto_adjust/issues"
Issues = "http://gitea.semrks.nl:8418/mreurekas/cpu_governor_auto_adjust/issues"