From cc5e8c2e7cac55067d82c46fb016b7ab51be2b50 Mon Sep 17 00:00:00 2001 From: Guy Khmelnitsky Date: Mon, 13 May 2019 15:50:55 +0300 Subject: [PATCH 1/2] Create manifest.json --- sonoff/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sonoff/manifest.json diff --git a/sonoff/manifest.json b/sonoff/manifest.json new file mode 100644 index 0000000..81bd207 --- /dev/null +++ b/sonoff/manifest.json @@ -0,0 +1,8 @@ +{ + "domain": "sonoff", + "name": "Sonoff / eWeLink", + "documentation": "https://github.com/peterbuga/HASS-sonoff-ewelink", + "dependencies": [], + "codeowners": ["@peterbuga"], + "requirements": ["uuid", "websocket-client==0.54.0"] +} From a88be0161f2f244234755502b31b8868c189d529 Mon Sep 17 00:00:00 2001 From: Guy Khmelnitsky Date: Mon, 13 May 2019 15:51:09 +0300 Subject: [PATCH 2/2] Update __init__.py --- sonoff/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sonoff/__init__.py b/sonoff/__init__.py index 3dd49cc..2fe319c 100644 --- a/sonoff/__init__.py +++ b/sonoff/__init__.py @@ -23,8 +23,6 @@ DOMAIN = "sonoff" -REQUIREMENTS = ['uuid', 'websocket-client==0.54.0'] - import websocket _LOGGER = logging.getLogger(__name__)