aboutsummaryrefslogtreecommitdiff
path: root/util/nix/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'util/nix/pyproject.toml')
-rw-r--r--util/nix/pyproject.toml36
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]
5name = "qmk_firmware"
6version = "0.1.0"
7description = ""
8authors = []
9
10[tool.poetry.dependencies]
11python = "^3.8"
12appdirs = "*"
13argcomplete = "*"
14colorama = "*"
15hid = "*"
16hjson = "*"
17jsonschema = ">=3"
18milc = ">=1.4.2"
19Pygments = "*"
20pyusb = "*"
21qmk-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.
26qmk = "*"
27
28[tool.poetry.dev-dependencies]
29nose2 = "*"
30flake8 = "*"
31pep8-naming = "*"
32yapf = "*"
33
34[build-system]
35requires = ["poetry-core>=1.0.0"]
36build-backend = "poetry.core.masonry.api"