tvl-depot/fun/idual/setup.py
Vincent Ambo 8681ac787e feat(fun/idual): Introduce real CLI that can send all commands
Adds an idualctl CLI that can be used to control the lights.
2020-04-26 15:50:21 +01:00

15 lines
359 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='idualctl',
version='0.1',
author='Vincent Ambo',
author_email='mail@tazj.in',
url='https://git.tazj.in/about/fun/idual',
packages=['idual'],
scripts = ['idualctl'],
install_requires=['broadlink>=0.13.2'],
include_package_data=True,
)