diff --git a/requirements.txt b/requirements.txt index 082ea2e..288c3ed 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ +PyYAML>=3.11 paho-mqtt>=1.0 influxdb schema>=0.6.7 -jsonpath-ng>=1.4.3 \ No newline at end of file +jsonpath-ng>=1.4.3 diff --git a/setup.py b/setup.py index 750d169..7137845 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -requirements = ['paho-mqtt>=1.0', 'influxdb', 'schema>=0.6.7', 'jsonpath-ng>=1.4.3'] +requirements = ['PyYAML>=3.11', 'paho-mqtt>=1.0', 'influxdb', 'schema>=0.6.7', 'jsonpath-ng>=1.4.3'] setup( name='mqtt2influxdb', @@ -33,6 +33,6 @@ mqtt2influxdb=mqtt2influxdb.cli:main ''', long_description=''' -BigClown Firmware Tool. +BigClown tool for storage data from MQTT to InfluxDB ''' )