* Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commitfe7171b4cd
. * Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commit391355ee2c
. * Remove dependencies and requirements * Fix flake8 complaints * Fix more flake8 complaints * Revert non-component removals
25 lines
598 B
Python
25 lines
598 B
Python
"""Support for Mycroft AI."""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.helpers import discovery
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DOMAIN = 'mycroft'
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: vol.Schema({
|
|
vol.Required(CONF_HOST): cv.string
|
|
})
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def setup(hass, config):
|
|
"""Set up the Mycroft component."""
|
|
hass.data[DOMAIN] = config[DOMAIN][CONF_HOST]
|
|
discovery.load_platform(hass, 'notify', DOMAIN, {}, config)
|
|
return True
|