From 1fc5f7d5aecf205935624a24d4de049d35bb6030 Mon Sep 17 00:00:00 2001 From: atse Date: Mon, 18 Nov 2024 11:47:33 +0800 Subject: [PATCH] pytec: Add `thermostat_{autotune,plot}` entry pts Forms an interface to run the `plot.py` and `autotune.py` scripts. --- pytec/setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pytec/setup.py b/pytec/setup.py index 3a46a57..44fbef0 100644 --- a/pytec/setup.py +++ b/pytec/setup.py @@ -9,4 +9,11 @@ setup( license="GPLv3", install_requires=["setuptools"], packages=find_packages(), + entry_points={ + "gui_scripts": [ + "thermostat_autotune = autotune:main", + "thermostat_plot = plot:main", + ] + }, + py_modules=["autotune", "plot"], )