|
1 | 1 | [tool.poetry]
|
2 | 2 | name = "aiomqtt"
|
3 |
| -version = "0.0.0" # Placeholder: Managed by poetry-dynamic-versioning |
| 3 | +version = "0.0.0" # Placeholder: Managed by poetry-dynamic-versioning |
4 | 4 | description = "The idiomatic asyncio MQTT client, wrapped around paho-mqtt"
|
5 | 5 | license = "BSD-3-Clause"
|
6 |
| -authors = [ "Frederik Aalund <[email protected]>", "Felix Böhm <[email protected]>", "Jonathan Plasse <[email protected]>"] |
| 6 | +authors = [ |
| 7 | + "Frederik Aalund <[email protected]>", |
| 8 | + |
| 9 | + "Jonathan Plasse <[email protected]>", |
| 10 | +] |
7 | 11 | readme = "README.md"
|
8 |
| -packages = [{include = "aiomqtt"}] |
9 |
| -repository = "https://github.com/sbtinstruments/aiomqtt" |
10 |
| -documentation = "https://sbtinstruments.github.io/aiomqtt" |
11 |
| -keywords = ["mqtt", "iot", "internet-of-things", "asyncio", "paho-mqtt", "mqttv5"] |
| 12 | +packages = [{ include = "aiomqtt" }] |
| 13 | +repository = "https://github.com/empicano/aiomqtt" |
| 14 | +documentation = "https://aiomqtt.felixboehm.dev" |
| 15 | +keywords = [ |
| 16 | + "mqtt", |
| 17 | + "iot", |
| 18 | + "internet-of-things", |
| 19 | + "asyncio", |
| 20 | + "paho-mqtt", |
| 21 | + "mqttv5", |
| 22 | +] |
12 | 23 | classifiers = [
|
13 | 24 | "Development Status :: 3 - Alpha",
|
14 | 25 | "Intended Audience :: Developers",
|
15 | 26 | "Operating System :: OS Independent",
|
16 | 27 | ]
|
17 | 28 |
|
18 | 29 | [tool.poetry.urls]
|
19 |
| -"Issue tracker" = "https://github.com/sbtinstruments/aiomqtt/issues" |
| 30 | +"Issue tracker" = "https://github.com/empicano/aiomqtt/issues" |
20 | 31 |
|
21 | 32 | [tool.poetry.dependencies]
|
22 | 33 | python = "^3.8"
|
23 | 34 | paho-mqtt = "^2.1.0"
|
24 |
| -typing-extensions = {version = "^4.4.0", markers = "python_version < '3.10'"} |
| 35 | +typing-extensions = { version = "^4.4.0", markers = "python_version < '3.10'" } |
25 | 36 |
|
26 | 37 | [tool.poetry.group.dev]
|
27 | 38 | optional = true
|
@@ -138,12 +149,8 @@ pretty = true
|
138 | 149 | filterwarnings = [
|
139 | 150 | "error",
|
140 | 151 | "ignore:ssl.PROTOCOL_TLS is deprecated:DeprecationWarning",
|
141 |
| - # TODO(jonathan): Remove these once we finish the migration to the new API |
142 |
| - "ignore:Callback API version 1 is deprecated, update to latest version:DeprecationWarning", |
143 |
| -] |
144 |
| -markers = [ |
145 |
| - "network: tests that requires network access" |
146 | 152 | ]
|
| 153 | +markers = ["network: tests that requires network access"] |
147 | 154 | xfail_strict = true
|
148 | 155 |
|
149 | 156 | [tool.coverage.run] # https://coverage.readthedocs.io/en/latest/config.html#run
|
|
0 commit comments