summaryrefslogtreecommitdiff
path: root/tools/sops-inventory/pyproject.toml
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-04-14 11:49:12 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2026-04-14 11:49:12 +0200
commit19d093c29f0b6b64f4c0f383ec34a85f76e04537 (patch)
tree51a313232956f4bd9b78fb74391e79e5cff40407 /tools/sops-inventory/pyproject.toml
parenta5525598c0f459c8b8f61af8d719cae7a3d5952c (diff)
downloadnixos-19d093c29f0b6b64f4c0f383ec34a85f76e04537.tar
nixos-19d093c29f0b6b64f4c0f383ec34a85f76e04537.tar.gz
nixos-19d093c29f0b6b64f4c0f383ec34a85f76e04537.tar.bz2
nixos-19d093c29f0b6b64f4c0f383ec34a85f76e04537.tar.xz
nixos-19d093c29f0b6b64f4c0f383ec34a85f76e04537.zip
bumpflakes
Diffstat (limited to 'tools/sops-inventory/pyproject.toml')
-rw-r--r--tools/sops-inventory/pyproject.toml28
1 files changed, 19 insertions, 9 deletions
diff --git a/tools/sops-inventory/pyproject.toml b/tools/sops-inventory/pyproject.toml
index c78588fc..980aa096 100644
--- a/tools/sops-inventory/pyproject.toml
+++ b/tools/sops-inventory/pyproject.toml
@@ -1,17 +1,27 @@
1[tool.poetry] 1[project]
2name = "sops_inventory" 2name = "sops_inventory"
3version = "0.0.0" 3version = "0.0.0"
4description = "" 4description = ""
5authors = ["Gregor Kleen <gkleen@yggdrasil.li>"] 5authors = [{ name = "Gregor Kleen", email = "gkleen@yggdrasil.li" }]
6requires-python = ">=3.10,<4"
7classifiers = [
8 "Programming Language :: Python :: 3",
9 "Programming Language :: Python :: 3.10",
10 "Programming Language :: Python :: 3.11",
11 "Programming Language :: Python :: 3.12",
12 "Programming Language :: Python :: 3.13",
13 "Programming Language :: Python :: 3.14",
14]
15dependencies = ["pyyaml>=6.0,<7"]
6 16
7[tool.poetry.dependencies] 17[project.scripts]
8python = "^3.10" 18sops-inventory = "sops_inventory.__main__:main"
9pyyaml = "^6.0"
10 19
20[tool.uv]
11 21
12[tool.poetry.scripts] 22[tool.uv.build-backend]
13sops-inventory = 'sops_inventory.__main__:main' 23module-root = ""
14 24
15[build-system] 25[build-system]
16requires = ["poetry-core"] 26requires = ["uv_build>=0.10.9,<0.11.0"]
17build-backend = "poetry.core.masonry.api" 27build-backend = "uv_build"