pyproject.toml 922 B

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