Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ pip install aiomqtt

The only dependency is [paho-mqtt](https://github.com/eclipse/paho.mqtt.python).

If you need proxy support, you can install with the proxy extra:

```
pip install aiomqtt[proxy]
```

If you can't wait for the latest version, install directly from GitHub with:

```
Expand Down
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ python = "^3.8"
paho-mqtt = "^2.1.0"
typing-extensions = {version = "^4.4.0", markers = "python_version < '3.10'"}

[project.optional-dependencies]
proxy = [
"PySocks",
]

[tool.poetry.group.dev]
optional = true

Expand Down