31 lines
768 B
TOML
31 lines
768 B
TOML
[project]
|
|
name = "cpu_governor_auto_adjust"
|
|
version = "0.1.0"
|
|
description = "This application has been developed to automatically change cpu governor based on certain triggers."
|
|
authors = [
|
|
{ name = "Martin Reurekas", email = "martinl@semrks.nl" }
|
|
]
|
|
license = { file = "LICENSE" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"roonapi",
|
|
"cpufreq"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"black",
|
|
"mypy"
|
|
]
|
|
|
|
docs = [
|
|
"sphinx",
|
|
"sphinx-rtd-theme"
|
|
]
|
|
|
|
[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" |