* 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
15 lines
319 B
Python
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/*']},
|
|
)
|