forked from platypush/platypush
paho.mqtt
should also be added to the mock modules
This commit is contained in:
parent
1e2ffc121f
commit
ed2a56de42
3 changed files with 29 additions and 27 deletions
50
README.md
50
README.md
|
@ -10,7 +10,6 @@ Platypush
|
||||||
|
|
||||||
<!-- toc -->
|
<!-- toc -->
|
||||||
|
|
||||||
- [Useful links](#useful-links)
|
|
||||||
- [Introduction](#introduction)
|
- [Introduction](#introduction)
|
||||||
+ [What it can do](#what-it-can-do)
|
+ [What it can do](#what-it-can-do)
|
||||||
- [Installation](#installation)
|
- [Installation](#installation)
|
||||||
|
@ -46,34 +45,11 @@ Platypush
|
||||||
+ [PWA support](#pwa-support)
|
+ [PWA support](#pwa-support)
|
||||||
- [Mobile app](#mobile-app)
|
- [Mobile app](#mobile-app)
|
||||||
- [Tests](#tests)
|
- [Tests](#tests)
|
||||||
|
- [Useful links](#useful-links)
|
||||||
- [Funding](#funding)
|
- [Funding](#funding)
|
||||||
|
|
||||||
<!-- tocstop -->
|
<!-- tocstop -->
|
||||||
|
|
||||||
## Useful links
|
|
||||||
- Recommended read: [**Getting started with Platypush**](https://blog.platypush.tech/article/Ultimate-self-hosted-automation-with-Platypush).
|
|
||||||
|
|
||||||
- The [blog](https://blog.platypush.tech) is a good place to get more insights
|
|
||||||
and inspiration on what you can build.
|
|
||||||
|
|
||||||
- The [wiki](https://git.platypush.tech/platypush/platypush/wiki) also
|
|
||||||
contains many resources on getting started.
|
|
||||||
|
|
||||||
- Extensive documentation for all the available integrations and messages [is
|
|
||||||
available](https://docs.platypush.tech/).
|
|
||||||
|
|
||||||
- If you have issues/feature requests/enhancements please [create an
|
|
||||||
issue](https://git.platypush.tech/platypush/platypush/issues).
|
|
||||||
|
|
||||||
- A [Matrix instance](https://matrix.to/#/#platypush:matrix.platypush.tech) is
|
|
||||||
available if you are looking for interactive support.
|
|
||||||
|
|
||||||
- An IRC channel is also available at `#platypush@irc.platypush.tech:6697` (SSL
|
|
||||||
only).
|
|
||||||
|
|
||||||
- A [Lemmy instance](https://lemmy.platypush.tech/c/platypush) is available for
|
|
||||||
general questions.
|
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
Platypush is a general-purpose extensible platform for automation across
|
Platypush is a general-purpose extensible platform for automation across
|
||||||
|
@ -812,6 +788,30 @@ of Platypush to your fingertips.
|
||||||
To run the tests simply run `pytest` either from the project root folder or the
|
To run the tests simply run `pytest` either from the project root folder or the
|
||||||
`tests/` folder.
|
`tests/` folder.
|
||||||
|
|
||||||
|
## Useful links
|
||||||
|
- Recommended read: [**Getting started with Platypush**](https://blog.platypush.tech/article/Ultimate-self-hosted-automation-with-Platypush).
|
||||||
|
|
||||||
|
- The [blog](https://blog.platypush.tech) is a good place to get more insights
|
||||||
|
and inspiration on what you can build.
|
||||||
|
|
||||||
|
- The [wiki](https://git.platypush.tech/platypush/platypush/wiki) also
|
||||||
|
contains many resources on getting started.
|
||||||
|
|
||||||
|
- Extensive documentation for all the available integrations and messages [is
|
||||||
|
available](https://docs.platypush.tech/).
|
||||||
|
|
||||||
|
- If you have issues/feature requests/enhancements please [create an
|
||||||
|
issue](https://git.platypush.tech/platypush/platypush/issues).
|
||||||
|
|
||||||
|
- A [Matrix instance](https://matrix.to/#/#platypush:matrix.platypush.tech) is
|
||||||
|
available if you are looking for interactive support.
|
||||||
|
|
||||||
|
- An IRC channel is also available at `#platypush@irc.platypush.tech:6697` (SSL
|
||||||
|
only).
|
||||||
|
|
||||||
|
- A [Lemmy instance](https://lemmy.platypush.tech/c/platypush) is available for
|
||||||
|
general questions.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Funding
|
## Funding
|
||||||
|
|
|
@ -40,6 +40,7 @@ release = ''
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||||
# ones.
|
# ones.
|
||||||
extensions = [
|
extensions = [
|
||||||
|
'myst_parser',
|
||||||
'sphinx.ext.autodoc',
|
'sphinx.ext.autodoc',
|
||||||
'sphinx.ext.intersphinx',
|
'sphinx.ext.intersphinx',
|
||||||
'sphinx.ext.todo',
|
'sphinx.ext.todo',
|
||||||
|
@ -58,8 +59,8 @@ templates_path = ['_templates']
|
||||||
# The suffix(es) of source filenames.
|
# The suffix(es) of source filenames.
|
||||||
# You can specify multiple suffix as a list of string:
|
# You can specify multiple suffix as a list of string:
|
||||||
#
|
#
|
||||||
# source_suffix = ['.rst', '.md']
|
source_suffix = ['.rst', '.md']
|
||||||
source_suffix = '.rst'
|
# source_suffix = '.rst'
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
|
|
|
@ -69,6 +69,7 @@ mock_imports = [
|
||||||
"oauth2client",
|
"oauth2client",
|
||||||
"omxplayer",
|
"omxplayer",
|
||||||
"openzwave",
|
"openzwave",
|
||||||
|
"paho.mqtt",
|
||||||
"pandas",
|
"pandas",
|
||||||
"paramiko",
|
"paramiko",
|
||||||
"picamera",
|
"picamera",
|
||||||
|
|
Loading…
Reference in a new issue