diff options
author | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2022-04-10 12:13:40 +0100 |
commit | dc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch) | |
tree | 4ccb8fa5886b66fa9d480edef74236c27f035e16 /util/nix/pyproject.toml |
Diffstat (limited to 'util/nix/pyproject.toml')
-rw-r--r-- | util/nix/pyproject.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/util/nix/pyproject.toml b/util/nix/pyproject.toml new file mode 100644 index 000000000..1ec8aacd4 --- /dev/null +++ b/util/nix/pyproject.toml | |||
@@ -0,0 +1,36 @@ | |||
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 = "*" | ||
13 | argcomplete = "*" | ||
14 | colorama = "*" | ||
15 | hid = "*" | ||
16 | hjson = "*" | ||
17 | jsonschema = ">=3" | ||
18 | milc = ">=1.4.2" | ||
19 | Pygments = "*" | ||
20 | pyusb = "*" | ||
21 | qmk-dotty-dict = "*" | ||
22 | |||
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 | |||
28 | [tool.poetry.dev-dependencies] | ||
29 | nose2 = "*" | ||
30 | flake8 = "*" | ||
31 | pep8-naming = "*" | ||
32 | yapf = "*" | ||
33 | |||
34 | [build-system] | ||
35 | requires = ["poetry-core>=1.0.0"] | ||
36 | build-backend = "poetry.core.masonry.api" | ||