Pipfile 580 B

12345678910111213141516171819202122232425262728
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. systemctl-mqtt = {editable = true,path = "."}
  7. [dev-packages]
  8. black = "==21.12b0"
  9. mypy = "*"
  10. pylint = "*"
  11. # >=2.0.3 to skip PyGObject's custom loader & fix broken wheel
  12. pylint-import-requirements = ">=2.0.3"
  13. pytest = "*"
  14. pytest-cov = "*"
  15. # python3.6 compatibility
  16. importlib-metadata = "<4.9"
  17. platformdirs = "<2.4.1"
  18. zipp = "<3.7"
  19. # mypy on python<3.8
  20. typed-ast = {markers = "python_version < '3.8'"}
  21. [requires]
  22. python_version = "3"
  23. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile