summaryrefslogtreecommitdiff
path: root/tools/sops-inventory/pyproject.toml
diff options
context:
space:
mode:
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"