36 lines
905 B
TOML
36 lines
905 B
TOML
[project]
|
|
name = "cpu_governor_auto_adjust"
|
|
version = "1.2.2"
|
|
description = "CPU Governor Auto Adjust based on Roon Activity and System Load"
|
|
authors = [
|
|
{ name = "Martin Reurekas", email = "martin@semrks.nl" }
|
|
]
|
|
license = "MIT"
|
|
license-files = ["LICENSE"]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"xmltodict~=0.14,<2",
|
|
"lxml>=5.3,<7",
|
|
"roonapi~=0.1,<2",
|
|
"cpufreq~=0.3,<2"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"black",
|
|
"mypy"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
[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"
|