Metadata-Version: 2.1
Name: appdaemon
Version: 4.0.7
Summary: Apps for the Home Assistant home automation package.
Home-page: https://github.com/home-assistant/appdaemon.git
Author: Andrew I Cockburn
Author-email: appdaemon@acockburn.com
License: Apache License 2.0
Keywords: appdaemon,home,automation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Home Automation
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: astral (==2.2)
Requires-Dist: pytz (==2021.1)
Requires-Dist: requests (==2.25.1)
Requires-Dist: websocket-client (==0.58.0)
Requires-Dist: aiohttp (==3.7.4)
Requires-Dist: aiodns (==2.0.0)
Requires-Dist: cchardet (==2.1.7)
Requires-Dist: yarl (==1.6.3)
Requires-Dist: Jinja2 (==2.11.3)
Requires-Dist: aiohttp-jinja2 (==1.4.2)
Requires-Dist: pyyaml (==5.4.1)
Requires-Dist: voluptuous (==0.12.1)
Requires-Dist: feedparser (==6.0.2)
Requires-Dist: iso8601 (==0.1.14)
Requires-Dist: bcrypt (==3.2.0)
Requires-Dist: paho-mqtt (==1.5.1)
Requires-Dist: python-engineio (==3.13.2)
Requires-Dist: python-socketio (==4.6.1)
Requires-Dist: deepdiff (==5.2.3)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: pid (==3.0.4)
Requires-Dist: azure-mgmt-compute (==19.0.0)
Requires-Dist: azure-mgmt-storage (==17.0.0)
Requires-Dist: azure-mgmt-resource (==16.0.0)
Requires-Dist: azure-keyvault-secrets (==4.2.0)
Requires-Dist: azure-storage-blob (==12.8.0)
Requires-Dist: pygments (==2.8.1)
Requires-Dist: sockjs (==0.10.0)
Requires-Dist: uvloop (==0.14.0) ; sys_platform != "win32"

# Description

AppDaemon is a loosely coupled, multi-threaded, sandboxed python
execution environment for writing automation apps for various types of Home Automation Software including [Home
Assistant](https://home-assistant.io/) and MQTT. It has a pluggable architecture allowing it to be integrated with
practically any event driven application.

It also provides a configurable dashboard (HADashboard)
suitable for wall mounted tablets.

For full instructions on installation and use check out the [AppDaemon Project Documentation](http://appdaemon.readthedocs.io).


## Development of the AppDaemon library

We use [pre-commit](https://pre-commit.com) for linting of the code, so `pip install pre_commit` and run
```
pre-commit install
```
in the repository.


