You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
751 B

  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 = "^1.4.4"
  12. argcomplete = "^1.12.2"
  13. colorama = "^0.4.4"
  14. dotty-dict = "^1.3.0"
  15. hjson = "^3.0.2"
  16. jsonschema = "^3.2.0"
  17. milc = "^1.3.0"
  18. Pygments = "^2.8.0"
  19. qmk = "*"
  20. [tool.poetry.dev-dependencies]
  21. nose2 = "^0.10.0"
  22. flake8 = "^3.8.4"
  23. hid = "^1.0.4"
  24. pep8-naming = "^0.11.1"
  25. pyusb = "^1.1.1"
  26. yapf = "^0.30.0"
  27. [build-system]
  28. requires = ["poetry-core>=1.0.0"]
  29. build-backend = "poetry.core.masonry.api"