Browse Source

[deps] closes #7

Maxime Alves LIRMM@home 3 years ago
parent
commit
dc3c8a5c63
2 changed files with 65 additions and 0 deletions
  1. 48
    0
      poetry.lock
  2. 17
    0
      pyproject.toml

+ 48
- 0
poetry.lock View File

@@ -0,0 +1,48 @@
1
+[[package]]
2
+category = "main"
3
+description = "Python Serial Port Extension"
4
+name = "pyserial"
5
+optional = false
6
+python-versions = "*"
7
+version = "3.4"
8
+
9
+[[package]]
10
+category = "main"
11
+description = "The little ASGI library that shines."
12
+name = "starlette"
13
+optional = false
14
+python-versions = ">=3.6"
15
+version = "0.13.6"
16
+
17
+[package.extras]
18
+full = ["aiofiles", "graphene", "itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests", "ujson"]
19
+
20
+[[package]]
21
+category = "main"
22
+description = "Implementation of the Modbus protocol in pure Python."
23
+name = "umodbus"
24
+optional = false
25
+python-versions = "*"
26
+version = "1.0.3"
27
+
28
+[package.dependencies]
29
+pyserial = ">=3.4,<4.0"
30
+
31
+[metadata]
32
+content-hash = "c85756aa32d77143b62d4706f68a6cc2c2c9ca5ff4ea1ff407b0b7cdd5b309d8"
33
+lock-version = "1.0"
34
+python-versions = "^3.7"
35
+
36
+[metadata.files]
37
+pyserial = [
38
+    {file = "pyserial-3.4-py2.py3-none-any.whl", hash = "sha256:e0770fadba80c31013896c7e6ef703f72e7834965954a78e71a3049488d4d7d8"},
39
+    {file = "pyserial-3.4.tar.gz", hash = "sha256:6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627"},
40
+]
41
+starlette = [
42
+    {file = "starlette-0.13.6-py3-none-any.whl", hash = "sha256:bd2ffe5e37fb75d014728511f8e68ebf2c80b0fa3d04ca1479f4dc752ae31ac9"},
43
+    {file = "starlette-0.13.6.tar.gz", hash = "sha256:ebe8ee08d9be96a3c9f31b2cb2a24dbdf845247b745664bd8a3f9bd0c977fdbc"},
44
+]
45
+umodbus = [
46
+    {file = "uModbus-1.0.3-py2.py3-none-any.whl", hash = "sha256:39487b5dffb27928d9202eeeb64a04c638d00f9171f4d79e93b7a853414fbfca"},
47
+    {file = "uModbus-1.0.3.tar.gz", hash = "sha256:bfb3989939db4672289da4c5986e2bf46ac4b41f976fbed2f5b682bf17403990"},
48
+]

+ 17
- 0
pyproject.toml View File

@@ -0,0 +1,17 @@
1
+[tool.poetry]
2
+name = "pyheatpump"
3
+version = "0.1.0"
4
+description = "Retrives data from a heatpump and send them to a supervisor"
5
+authors = ["Maxime Alves <maxime@freepoteries.fr>"]
6
+license = "GPL-3.0-or-later"
7
+
8
+[tool.poetry.dependencies]
9
+python = "^3.7"
10
+starlette = "^0.13.6"
11
+umodbus = "^1.0.3"
12
+
13
+[tool.poetry.dev-dependencies]
14
+
15
+[build-system]
16
+requires = ["poetry>=0.12"]
17
+build-backend = "poetry.masonry.api"

Loading…
Cancel
Save