diff --git a/devices/protocols/ESPHome/README.rst b/devices/protocols/ESPHome/README.rst index b8ed145de8449ac73fc7c06963ef490805d7a49e..e7c44fb32b75b1283199b6b89999b82cbd19a3a1 100644 --- a/devices/protocols/ESPHome/README.rst +++ b/devices/protocols/ESPHome/README.rst @@ -1,5 +1,16 @@ -xAAL ESPHome Gateway -==================== +xaal.esphome +============ +This package provides a simple way to integrate ESPHome devices with xAAL. + + +Usage +----- + +.. code:: shell + + python -m xaal.esphome + # or + xaal-pkgrun esphome - support Switch, Lamp and Contact right now - more support still to come. diff --git a/devices/protocols/ESPHome/pyproject.toml b/devices/protocols/ESPHome/pyproject.toml index 839e323568ec2af5c4732344b46cd451acac0681..4c46f67dd8d764338696212819e05186a81221f4 100644 --- a/devices/protocols/ESPHome/pyproject.toml +++ b/devices/protocols/ESPHome/pyproject.toml @@ -3,10 +3,14 @@ name = "xaal.esphome" version = "0.1" description = "xAAL gateway for for ESPHome devices" readme = "README.rst" -authors = [ { name = "Jerome Kerdreux", email = "Jerome.Kerdreux@imt-atlantique.fr" } ] -license = { text = "GPL License"} -classifiers = ["Programming Language :: Python", -"Topic :: Software Development :: Libraries :: Python Modules"] +authors = [ + { name = "Jerome Kerdreux", email = "Jerome.Kerdreux@imt-atlantique.fr" }, +] +license = { text = "GPL License" } +classifiers = [ + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Python Modules", +] keywords = ["xaal", "esphome"] dependencies = ["xaal.lib", "aioesphomeapi"]