diff --git a/pythermostat/setup.py b/pythermostat/setup.py index e1f7c87..b610f28 100644 --- a/pythermostat/setup.py +++ b/pythermostat/setup.py @@ -9,4 +9,14 @@ setup( license="GPLv3", install_requires=["setuptools"], packages=find_packages(), + entry_points={ + "gui_scripts": [ + "thermostat_plot = plot:main", + ], + "console_scripts": [ + "thermostat_autotune = autotune:main", + "thermostat_test = test:main", + ] + }, + py_modules=["autotune", "plot", "test"], )