diff options
Diffstat (limited to 'util/nix/pyproject.toml')
-rw-r--r-- | util/nix/pyproject.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/util/nix/pyproject.toml b/util/nix/pyproject.toml new file mode 100644 index 000000000..a81336189 --- /dev/null +++ b/util/nix/pyproject.toml | |||
@@ -0,0 +1,32 @@ | |||
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 | |||
10 | [tool.poetry.dependencies] | ||
11 | python = "^3.8" | ||
12 | appdirs = "^1.4.4" | ||
13 | argcomplete = "^1.12.2" | ||
14 | colorama = "^0.4.4" | ||
15 | dotty-dict = "^1.3.0" | ||
16 | hjson = "^3.0.2" | ||
17 | jsonschema = "^3.2.0" | ||
18 | milc = "^1.3.0" | ||
19 | Pygments = "^2.8.0" | ||
20 | qmk = "*" | ||
21 | |||
22 | [tool.poetry.dev-dependencies] | ||
23 | nose2 = "^0.10.0" | ||
24 | flake8 = "^3.8.4" | ||
25 | hid = "^1.0.4" | ||
26 | pep8-naming = "^0.11.1" | ||
27 | pyusb = "^1.1.1" | ||
28 | yapf = "^0.30.0" | ||
29 | |||
30 | [build-system] | ||
31 | requires = ["poetry-core>=1.0.0"] | ||
32 | build-backend = "poetry.core.masonry.api" | ||