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 611B

12345678910111213141516171819202122232425262728
  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. uvicorn = "^0.11.6"
  11. umodbus = "^1.0.3"
  12. click = "^7.1.2"
  13. requests = "^2.24.0"
  14. [tool.poetry.dev-dependencies]
  15. pytest = "^5.4.3"
  16. requests = "^2.24.0"
  17. asynctest = "^0.13.0"
  18. pytest-asyncio = "^0.14.0"
  19. [tool.poetry.scripts]
  20. pyheatpump = 'pyheatpump.cli:cli'
  21. [build-system]
  22. requires = ["poetry>=0.12"]
  23. build-backend = "poetry.masonry.api"