feat(fun/idual): Implement some utilities for controlling lights

This program, if build in its executable form, will try to turn the
lights on and put them into "morning mode".
This commit is contained in:
Vincent Ambo 2020-04-25 23:13:36 +01:00
parent e7aaa0bc2f
commit dff91042fd
2 changed files with 36 additions and 5 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools import setup
setup(
name='idualctl',
@ -10,7 +10,7 @@ setup(
url='https://git.tazj.in/about/fun/idual',
packages=['idual'],
package_dir = {'idual': ''},
scripts = ['idual.py'],
scripts = ['__init__.py'],
install_requires=['broadlink>=0.13.2'],
include_package_data=True,
)