12345678910111213141516171819202122232425262728 |
- [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"
-
- [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 = ["poetry>=0.12"]
- build-backend = "poetry.masonry.api"
|