8681ac787e
Adds an idualctl CLI that can be used to control the lights.
15 lines
359 B
Python
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,
|
|
)
|