pyHeatpump/pyproject.toml
2020-08-03 12:11:15 +02:00

28 lines
650 B
TOML

[tool.poetry]
name = "pyheatpump"
version = "0.1.0"
description = "Retrives data from a heatpump and send them to a supervisor"
authors = ["Maxime Alves <maxime@freepoteries.fr>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.7"
starlette = "^0.13.6"
uvicorn = "^0.11.6"
umodbus = "^1.0.3"
click = "^7.1.2"
requests = "^2.24.0"
netifaces = "^0.10.9"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
requests = "^2.24.0"
asynctest = "^0.13.0"
pytest-asyncio = "^0.14.0"
[tool.poetry.scripts]
pyheatpump = 'pyheatpump.cli:cli'
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"