mqtt-dash/setup.py

15 lines
339 B
Python
Raw Permalink Normal View History

2019-10-31 17:24:26 +01:00
#!/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'],
2022-02-20 21:37:42 +01:00
scripts=['mqtt-dash', 'make-static-site'],
package_data={'mqtt_dash': ['templates/*.html', 'static/*']},
2019-10-31 17:24:26 +01:00
)