platypush/platypush/plugins/qrcode/manifest.yaml
Fabio Manganiello c3337ccc6c
[#311] Docs deps autogen sphinx plugin.
Added an `add_dependencies` plugin to the Sphinx build process that
parses the manifest files of the scanned backends and plugins and
automatically generates the documentation for the required dependencies
and triggered events.

This means that those dependencies are no longer required to be listed
in the docstring of the class itself.

Also in this commit:

- Black/LINT for some integrations that hadn't been touched in a long
  time.

- Deleted some leftovers from previous refactors (deprecated
  `backend.mqtt`, `backend.zwave.mqtt`, `backend.http.request.rss`).

- Deleted deprecated `inotify` backend - replaced by `file.monitor` (see
  #289).
2023-09-24 17:00:08 +02:00

31 lines
576 B
YAML

manifest:
events:
- platypush.message.event.qrcode.QrcodeScannedEvent
install:
apk:
- py3-numpy
- py3-pillow
- py3-qrcode
- py3-pyzbar
apt:
- python3-numpy
- python3-pillow
- python3-pyzbar
- python3-qrcode
dnf:
- python-numpy
- python-pillow
- python-qrcode
- python-zbar
pacman:
- python-numpy
- python-pillow
- python-qrcode
- pyzbar
pip:
- numpy
- qrcode
- pyzbar
- Pillow
package: platypush.plugins.qrcode
type: plugin