-
Notifications
You must be signed in to change notification settings - Fork 159
/
pyproject.toml
42 lines (39 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "mqtt-io"
version = "2.6.0"
description = "Expose GPIO modules (Raspberry Pi, Beaglebone, PCF8754, PiFace2 etc.), digital sensors (LM75 etc.) and serial streams to an MQTT server for remote control and monitoring."
readme = "README.md"
authors = ["Ellis Percival <mqtt-io@failcode.co.uk>"]
license = "MIT"
documentation = "https://flyte.github.io/mqtt-io/"
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0.1"
Cerberus = "^1.3.2"
typing-extensions = "^4.4.0"
dataclasses = { version = "^0.8", python = ">=3.6,<3.7" }
aiomqtt = "^2.1.0"
backoff = "^2.2.1"
confp = "^0.4.0"
# Fix for poetry/docutils related bug
docutils = "0.18.1"
[tool.poetry.dev-dependencies]
mock = { version = "^4.0.3", python = ">=3.6,<3.8" }
pytest = "^6.2.2"
tox = "^3.22.0"
pylint = "^3.2.7"
mypy = "^1.11.2"
behave = "^1.2.6"
coverage = "^5.4"
md-toc = "^8.0.0"
Sphinx = "^3.5.1"
sphinx-autoapi = "^1.7.0"
recommonmark = "^0.7.1"
Jinja2 = "^3.1.3"
ast-to-xml="^0.2.3"
GitPython = "^3.1.15"
semver = "^2.13.0"
docutils = "0.18.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"