-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (24 loc) · 1.02 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
[tool.poetry]
name = "smlpy"
version = "0.2.3"
description = "smlpy enables reading of smart meter language (sml) data from a smart power meter. You need a working IR-reading device for this, e.g. https://shop.weidmann-elektronik.de/index.php?page=product&info=24which must be connected to an USB port. Please note that this library only supports a small part of the SML-spec, especially the sending part is intentionally omitted"
authors = ["christian.sauer <[email protected]>"]
license = "MIT"
repository = "https://github.com/ChristianSauer/smlpy"
keywords = ["sml", "smart meter language", "stromzähler", "obis-t"]
classifiers = ["Development Status :: 4 - Beta", "Topic :: Home Automation"]
[tool.poetry.dependencies]
python = "^3.7"
loguru = "^0.5.3"
pyyaml = "^5.3.1"
pyserial = "^3.5"
pyserial-asyncio = "^0.5"
typing-extensions = "^3.7.4"
jsons = "^1.3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
pip = "^20.2.4"
black = "^20.8b1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"