Pipfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. switchbot-mqtt = {editable = true, path = "."}
  7. [dev-packages]
  8. black = "*"
  9. mypy = "*"
  10. pylint = "*"
  11. pytest = "*"
  12. pytest-asyncio = "*"
  13. pytest-cov = "*"
  14. # python3.10 compatibility
  15. # > File "…/python3.10/site-packages/pytest_asyncio/plugin.py", line 60, in …
  16. # > from backports.asyncio.runner import Runner
  17. # > ModuleNotFoundError: No module named 'backports'
  18. "backports.asyncio.runner" = {markers = "python_version < '3.11'"}
  19. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  20. # > from exceptiongroup import BaseExceptionGroup
  21. # > ModuleNotFoundError: No module named 'exceptiongroup'
  22. exceptiongroup = {markers = "python_version < '3.11'"}
  23. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  24. # > import tomli as tomllib
  25. # > ModuleNotFoundError: No module named 'tomli'
  26. tomli = {markers = "python_version < '3.11'"}
  27. [requires]
  28. python_version = "3"
  29. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile