forked from M-Labs/thermostat
atse
6b8a5f5bb8
Pytec is a misnomer, as the Thermostat is not limited to just controlling TEC modules. The library also interfaces with and controls the Thermostat itself, and not the TEC module directly. See M-Labs/thermostat#149 (comment)
13 lines
289 B
Python
13 lines
289 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="pythermostat",
|
|
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(),
|
|
)
|