pyproject.toml 894 B

123456789101112131415161718192021222324252627282930313233343536
  1. # This file should be kept in sync with requirements.txt and requirements-dev.txt
  2. # It is particularly required by the Nix environment (see shell.nix). To update versions,
  3. # normally one would run "poetry update --lock"
  4. [tool.poetry]
  5. name = "qmk_firmware"
  6. version = "0.1.0"
  7. description = ""
  8. authors = []
  9. [tool.poetry.dependencies]
  10. python = "^3.8"
  11. appdirs = "*"
  12. argcomplete = "*"
  13. colorama = "*"
  14. hid = "*"
  15. hjson = "*"
  16. jsonschema = ">=3"
  17. milc = ">=1.4.2"
  18. Pygments = "*"
  19. pyusb = "*"
  20. qmk-dotty-dict = "*"
  21. # This dependency is not mentioned in requirements.txt (QMK CLI is not a
  22. # library package that is required by the Python code in qmk_firmware), but is
  23. # required to build a proper nix-shell environment.
  24. qmk = "*"
  25. [tool.poetry.dev-dependencies]
  26. nose2 = "*"
  27. flake8 = "*"
  28. pep8-naming = "*"
  29. yapf = "*"
  30. [build-system]
  31. requires = ["poetry-core>=1.0.0"]
  32. build-backend = "poetry.core.masonry.api"