pytec: Add thermostat_{autotune,plot} entry pts

Forms an interface to run the `plot.py` and `autotune.py` scripts.
This commit is contained in:
atse 2024-11-18 11:47:33 +08:00
parent c632a85ce8
commit 1fc5f7d5ae

View File

@ -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"],
)