thermostat/pytec/setup.py
atse 54296c88b4 pytec: Set autotune and plot as entry points
For easier access to `plot.py` and `autotune.py` scripts.
2024-11-11 17:15:42 +08:00

20 lines
452 B
Python

from setuptools import setup, find_packages
setup(
name="pytec",
version="0.0",
author="M-Labs",
url="https://git.m-labs.hk/M-Labs/thermostat",
description="Control TEC",
license="GPLv3",
install_requires=["setuptools"],
packages=find_packages(),
entry_points={
"gui_scripts": [
"autotune = autotune:main",
"plot = plot:main",
]
},
py_modules=["autotune", "plot"],
)