build fixes
This commit is contained in:
@@ -1,13 +1,15 @@
|
|||||||
import logging
|
import logging
|
||||||
from cpu_governor_auto_adjust.logger import getLogger
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
from functools import cached_property, lru_cache
|
from functools import cached_property, lru_cache
|
||||||
from arguments import ArgumentsParser
|
|
||||||
from typing import NamedTuple, Optional, Any
|
from typing import NamedTuple, Optional, Any
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
import xmltodict
|
import xmltodict
|
||||||
|
|
||||||
|
from cpu_governor_auto_adjust.arguments import ArgumentsParser
|
||||||
|
from cpu_governor_auto_adjust.logger import getLogger
|
||||||
|
|
||||||
|
|
||||||
class TriggerTuple(NamedTuple):
|
class TriggerTuple(NamedTuple):
|
||||||
name: str
|
name: str
|
||||||
type: str
|
type: str
|
||||||
|
|||||||
+3
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "cpu_governor_auto_adjust"
|
name = "cpu_governor_auto_adjust"
|
||||||
version = "0.1.1"
|
version = "0.1.5"
|
||||||
description = "This application has been developed to automatically change cpu governor based on certain triggers."
|
description = "This application has been developed to automatically change cpu governor based on certain triggers."
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Martin Reurekas", email = "martin@semrks.nl" }
|
{ name = "Martin Reurekas", email = "martin@semrks.nl" }
|
||||||
@@ -9,6 +9,8 @@ license = { file = "LICENSE" }
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"xmltodict",
|
||||||
|
"lxml",
|
||||||
"roonapi",
|
"roonapi",
|
||||||
"cpufreq"
|
"cpufreq"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
cpufreq==0.3.5
|
|
||||||
roonapi==0.1.6
|
|
||||||
Reference in New Issue
Block a user