From e92e6b4efca18f8f1e2634219218609c4b1ac11c Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 28 Feb 2025 16:15:32 +0100 Subject: [PATCH] added pyproject.toml --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..28e928c --- /dev/null +++ b/pyproject.toml @@ -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" \ No newline at end of file