From 98561bfbc20b585afd16345b54cdd9533ed06332 Mon Sep 17 00:00:00 2001 From: Karel Blavka Date: Sun, 21 Jan 2018 08:23:42 +0100 Subject: [PATCH] Update requirements --- requirements.txt | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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 ''' )