PyThermostat: Add entry points for runnables
Forms a more convienient interface.
This commit is contained in:
parent
09300b5d44
commit
36d80ebdff
|
@ -9,4 +9,13 @@ setup(
|
||||||
license="GPLv3",
|
license="GPLv3",
|
||||||
install_requires=["setuptools"],
|
install_requires=["setuptools"],
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
entry_points={
|
||||||
|
"gui_scripts": [
|
||||||
|
"thermostat_plot = pythermostat.plot:main",
|
||||||
|
],
|
||||||
|
"console_scripts": [
|
||||||
|
"thermostat_autotune = pythermostat.autotune:main",
|
||||||
|
"thermostat_test = pythermostat.test:main",
|
||||||
|
]
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue