snix/fun/idual/setup.py
Vincent Ambo e7aaa0bc2f feat(fun/idual): Move colour codes into a Python script
This will make them easier to consume for the thing I'm actually
trying to do here.
2020-04-25 22:17:14 +01:00

16 lines
407 B
Python

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