-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Update links to repo and documentation
- Loading branch information
Showing
5 changed files
with
31 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,38 @@ | ||
[tool.poetry] | ||
name = "aiomqtt" | ||
version = "0.0.0" # Placeholder: Managed by poetry-dynamic-versioning | ||
version = "0.0.0" # Placeholder: Managed by poetry-dynamic-versioning | ||
description = "The idiomatic asyncio MQTT client, wrapped around paho-mqtt" | ||
license = "BSD-3-Clause" | ||
authors = ["Frederik Aalund <[email protected]>", "Felix Böhm <[email protected]>", "Jonathan Plasse <[email protected]>"] | ||
authors = [ | ||
"Frederik Aalund <[email protected]>", | ||
"Felix Böhm <[email protected]>", | ||
"Jonathan Plasse <[email protected]>", | ||
] | ||
readme = "README.md" | ||
packages = [{include = "aiomqtt"}] | ||
repository = "https://github.com/sbtinstruments/aiomqtt" | ||
documentation = "https://sbtinstruments.github.io/aiomqtt" | ||
keywords = ["mqtt", "iot", "internet-of-things", "asyncio", "paho-mqtt", "mqttv5"] | ||
packages = [{ include = "aiomqtt" }] | ||
repository = "https://github.com/empicano/aiomqtt" | ||
documentation = "https://aiomqtt.felixboehm.dev" | ||
keywords = [ | ||
"mqtt", | ||
"iot", | ||
"internet-of-things", | ||
"asyncio", | ||
"paho-mqtt", | ||
"mqttv5", | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[tool.poetry.urls] | ||
"Issue tracker" = "https://github.com/sbtinstruments/aiomqtt/issues" | ||
"Issue tracker" = "https://github.com/empicano/aiomqtt/issues" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
paho-mqtt = "^2.1.0" | ||
typing-extensions = {version = "^4.4.0", markers = "python_version < '3.10'"} | ||
typing-extensions = { version = "^4.4.0", markers = "python_version < '3.10'" } | ||
|
||
[tool.poetry.group.dev] | ||
optional = true | ||
|
@@ -138,12 +149,8 @@ pretty = true | |
filterwarnings = [ | ||
"error", | ||
"ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning", | ||
# TODO(jonathan): Remove these once we finish the migration to the new API | ||
"ignore:Callback API version 1 is deprecated, update to latest version:DeprecationWarning", | ||
] | ||
markers = [ | ||
"network: tests that requires network access" | ||
] | ||
markers = ["network: tests that requires network access"] | ||
xfail_strict = true | ||
|
||
[tool.coverage.run] # https://coverage.readthedocs.io/en/latest/config.html#run | ||
|