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