35 lines
947 B
TOML
35 lines
947 B
TOML
[project]
|
|
name = "cpu_governor_auto_adjust"
|
|
version = "0.5.21"
|
|
description = "This application has been developed to automatically change cpu governor based on certain triggers."
|
|
authors = [
|
|
{ name = "Martin Reurekas", email = "martin@semrks.nl" }
|
|
]
|
|
license = { file = "LICENSE" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"xmltodict~=0.14",
|
|
"lxml~=5.3",
|
|
"roonapi~=0.1",
|
|
"cpufreq~=0.3"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"black",
|
|
"mypy"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = [".", "cpu_governor_auto_adjust"]
|
|
|
|
[project.scripts]
|
|
cpu_governor_auto_adjust = "cpu_governor_auto_adjust.cpu_governor_auto_adjust:main"
|
|
|
|
[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"
|