From c66eec35a180b71d5de28bd9884a17a6f22cb9c7 Mon Sep 17 00:00:00 2001 From: Matthew Wall Date: Tue, 3 May 2016 11:45:34 -0400 Subject: [PATCH] config no longer necessary, since it is handled by wee_config --- install.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/install.py b/install.py index 9eacc2f..a2fbb3c 100644 --- a/install.py +++ b/install.py @@ -15,15 +15,5 @@ class NetatmoInstaller(ExtensionInstaller): description='Driver for netatmo weather stations.', author="Matthew Wall", author_email="mwall@users.sourceforge.net", - config={ - 'Station': { - 'station_type': 'netatmo'}, - 'netatmo': { - 'mode': 'cloud', - 'username': 'INSERT_USERNAME_HERE', - 'password': 'INSERT_PASSWORD_HERE', - 'client_id': 'INSERT_CLIENT_ID_HERE', - 'client_secret': 'INSERT_CLIENT_SECRET_HERE', - 'driver': 'user.netatmo'}}, files=[('bin/user', ['bin/user/netatmo.py'])] )