38 lines
598 B
TOML
38 lines
598 B
TOML
[tool.poetry]
|
|
name = "inverter_huawei"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Simon Milvert <simon@milvert.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
huawei-solar = "^2.2.4"
|
|
paho-mqtt = "^1.6.1"
|
|
python-dotenv = "^1.0.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.2.1"
|
|
black = "^23.1.0"
|
|
flake8 = "^6.0.0"
|
|
isort = "^5.12.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|