thermostat/pytec/setup.py
2024-06-28 12:59:53 +08:00

20 lines
504 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": [
"tec_qt = tec_qt:main",
]
},
py_modules=['aioexample', 'autotune', 'example', 'plot', 'tec_qt'],
package_data={"*": ["*.ico", "*.ui", "*.json"]},
)