aboutsummaryrefslogtreecommitdiff
path: root/nix/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'nix/pyproject.toml')
-rw-r--r--nix/pyproject.toml30
1 files changed, 30 insertions, 0 deletions
diff --git a/nix/pyproject.toml b/nix/pyproject.toml
new file mode 100644
index 000000000..62d49fad5
--- /dev/null
+++ b/nix/pyproject.toml
@@ -0,0 +1,30 @@
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"
6version = "0.1.0"
7description = ""
8authors = []
9
10[tool.poetry.dependencies]
11python = "^3.8"
12appdirs = "^1.4.4"
13argcomplete = "^1.12.2"
14colorama = "^0.4.4"
15hjson = "^3.0.2"
16milc = "^1.1.0"
17Pygments = "^2.8.0"
18dotty-dict = "^1.3.0"
19jsonschema = "^3.2.0"
20
21[tool.poetry.dev-dependencies]
22nose2 = "^0.10.0"
23flake8 = "^3.8.4"
24pep8-naming = "^0.11.1"
25yapf = "^0.30.0"
26Wave = "^0.0.2"
27
28[build-system]
29requires = ["poetry-core>=1.0.0"]
30build-backend = "poetry.core.masonry.api"