-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
38 lines (35 loc) · 911 Bytes
/
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
[tool.poetry]
name = "mqtt-bed"
version = "1.0.0"
description = "MQTT control for adjustable beds using Bluetooth"
authors = ["Denny Reiter <denny@reiters.org>", "Aaron Vigal <admin@aaronvigal.com>", "Joshua <Final-Hawk>", "mishnz"]
[tool.poetry.dependencies]
python = "^3.10"
paho-mqtt = "^1.5.1"
asyncio-mqtt = "^0.8.0"
enum-compat = "^0.0.3"
pygatt = "^4.0.5"
pyserial = "^3.5"
pexpect = "^4.8.0"
ptyprocess = "^0.7.0"
bluepy = "^1.3.0"
pyyaml = "^6.0.1"
[project]
name = "mqtt-bed"
version = "1.0.0"
description = "MQTT control for adjustable beds using Bluetooth"
dependencies = [
"python >= 3.10",
"paho-mqtt==1.5.1",
"asyncio-mqtt==0.8.0",
"enum-compat==0.0.3",
"pygatt==4.0.5",
"pyserial==3.5",
"pexpect==4.8.0",
"ptyprocess==0.7.0",
"bluepy==1.3.0",
"pyyaml==6.0.1"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"