forked from kbialek/deye-inverter-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 899 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
39
40
41
[tool.poetry]
name = "deye-inverter-mqtt"
version = "2024.04.2"
description = "Reads Deye solar inverter metrics using Modbus over TCP and publishes them over MQTT."
authors = ["Krzysztof Białek <[email protected]>"]
license = "Apache License 2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
libscrc = "1.8.1"
paho-mqtt = "1.6.1"
[tool.poetry.group.test.dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.1.0"
pytest-mock = "*"
black = { version = "^23.1.0", extras = ["d"] }
flake8 = "^6.0.0"
Flake8-pyproject = "^1.2.3"
pre-commit = "^3.2.0"
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
ignore = ['E203', 'W503']
[tool.coverage.run]
branch = true
relative_files = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"