pyproject.toml 934 B

123456789101112131415161718192021222324252627282930313233343536373839
  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.11"
  11. appdirs = "*"
  12. argcomplete = "*"
  13. colorama = "*"
  14. dotty-dict = "*"
  15. hid = "*"
  16. hjson = "*"
  17. jsonschema = ">=4"
  18. milc = ">=1.4.2"
  19. Pygments = "*"
  20. pyserial = "*"
  21. pyusb = "*"
  22. pillow = "*"
  23. # This dependency is not mentioned in requirements.txt (QMK CLI is not a
  24. # library package that is required by the Python code in qmk_firmware), but is
  25. # required to build a proper nix-shell environment.
  26. qmk = "*"
  27. [tool.poetry.dev-dependencies]
  28. nose2 = "*"
  29. flake8 = "*"
  30. pep8-naming = "*"
  31. pyflakes = "*"
  32. yapf = "*"
  33. [build-system]
  34. requires = ["poetry-core>=1.0.0"]
  35. build-backend = "poetry.core.masonry.api"