added pyproject.toml

This commit is contained in:
2025-02-28 16:15:32 +01:00
parent cd09d0d9ce
commit e92e6b4efc
+31
View File
@@ -0,0 +1,31 @@
[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"