2021-04-03 17:05:46 +02:00
|
|
|
# This file should be kept in sync with requirements.txt and requirements-dev.txt
|
|
|
|
# It is particularly required by the Nix environment (see shell.nix). To update versions,
|
|
|
|
# normally one would run "poetry update --lock"
|
|
|
|
[tool.poetry]
|
2021-06-20 15:30:16 +02:00
|
|
|
name = "qmk_firmware"
|
2021-04-03 17:05:46 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = []
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2021-08-29 23:24:43 +02:00
|
|
|
appdirs = "*"
|
|
|
|
argcomplete = "*"
|
|
|
|
colorama = "*"
|
|
|
|
hid = "*"
|
|
|
|
hjson = "*"
|
|
|
|
jsonschema = ">=3"
|
|
|
|
milc = ">=1.4.2"
|
|
|
|
Pygments = "*"
|
|
|
|
pyusb = "*"
|
|
|
|
qmk-dotty-dict = "*"
|
|
|
|
|
|
|
|
# This dependency is not mentioned in requirements.txt (QMK CLI is not a
|
|
|
|
# library package that is required by the Python code in qmk_firmware), but is
|
|
|
|
# required to build a proper nix-shell environment.
|
2021-06-20 15:30:16 +02:00
|
|
|
qmk = "*"
|
2021-04-03 17:05:46 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-08-29 23:24:43 +02:00
|
|
|
nose2 = "*"
|
|
|
|
flake8 = "*"
|
|
|
|
pep8-naming = "*"
|
|
|
|
yapf = "*"
|
2021-04-03 17:05:46 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|