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

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. netifaces = "^0.10.9"
  15. [tool.poetry.dev-dependencies]
  16. pytest = "^5.4.3"
  17. requests = "^2.24.0"
  18. asynctest = "^0.13.0"
  19. pytest-asyncio = "^0.14.0"
  20. [tool.poetry.scripts]
  21. pyheatpump = 'pyheatpump.cli:cli'
  22. [build-system]
  23. requires = ["setuptools>=40.8.0", "wheel"]
  24. build-backend = "setuptools.build_meta"