thermostat/pytec/setup.py

13 lines
282 B
Python
Raw Permalink Normal View History

2020-09-29 08:52:46 +08:00
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(),
)