diff options
Diffstat (limited to 'tools/sops-inventory/pyproject.toml')
-rw-r--r-- | tools/sops-inventory/pyproject.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/sops-inventory/pyproject.toml b/tools/sops-inventory/pyproject.toml new file mode 100644 index 00000000..c78588fc --- /dev/null +++ b/tools/sops-inventory/pyproject.toml | |||
@@ -0,0 +1,17 @@ | |||
1 | [tool.poetry] | ||
2 | name = "sops_inventory" | ||
3 | version = "0.0.0" | ||
4 | description = "" | ||
5 | authors = ["Gregor Kleen <gkleen@yggdrasil.li>"] | ||
6 | |||
7 | [tool.poetry.dependencies] | ||
8 | python = "^3.10" | ||
9 | pyyaml = "^6.0" | ||
10 | |||
11 | |||
12 | [tool.poetry.scripts] | ||
13 | sops-inventory = 'sops_inventory.__main__:main' | ||
14 | |||
15 | [build-system] | ||
16 | requires = ["poetry-core"] | ||
17 | build-backend = "poetry.core.masonry.api" | ||