Projet de remplacement du "RPiPasserelle" d'Otec.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 515B

12345678910111213141516171819202122
  1. [tool.poetry]
  2. name = "pyheatpump"
  3. version = "0.1.0"
  4. description = "Retrives data from a heatpump and send them to a supervisor"
  5. authors = ["Maxime Alves <maxime@freepoteries.fr>"]
  6. license = "GPL-3.0-or-later"
  7. [tool.poetry.dependencies]
  8. python = "^3.7"
  9. starlette = "^0.13.6"
  10. umodbus = "^1.0.3"
  11. uvicorn = "^0.11.6"
  12. [tool.poetry.dev-dependencies]
  13. pytest = "^5.4.3"
  14. requests = "^2.24.0"
  15. asynctest = "^0.13.0"
  16. pytest-asyncio = "^0.14.0"
  17. [build-system]
  18. requires = ["poetry>=0.12"]
  19. build-backend = "poetry.masonry.api"