Pipfile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. pylint-import-requirements = "*"
  12. pytest = "*"
  13. pytest-cov = "*"
  14. # mypy on python<3.8
  15. typed-ast = {markers = "python_version < '3.8'"}
  16. # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
  17. # > from exceptiongroup import BaseExceptionGroup
  18. # > ModuleNotFoundError: No module named 'exceptiongroup'
  19. exceptiongroup = {markers = "python_version < '3.11'"}
  20. # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
  21. # > import tomli as tomllib
  22. # > ModuleNotFoundError: No module named 'tomli'
  23. tomli = {markers = "python_version < '3.11'"}
  24. # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
  25. # > import wrapt
  26. # > ModuleNotFoundError: No module named 'wrapt'
  27. wrapt = "*"
  28. [requires]
  29. python_version = "3"
  30. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile