mqtt-dash/setup.py
0xee 75a07bac21 Make project fit for deployment
* Read config from file - see config.py.example
* Split HTML/JS/CSS, move static stuff to mqtt_dash/static/
* Move widget definitions to mqtt_dash.widgets
2019-10-31 20:59:07 +01:00

15 lines
319 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(
name='mqtt-dash',
version='0.1',
description='MQTT Dashboard',
author='0xee',
author_email='mqtt-dash@0xee.eu',
packages=['mqtt_dash'],
scripts=['mqtt-dash'],
package_data={'mqtt_dash': ['templates/*.html', 'static/*']},
)