summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMike Vink <mike.vink@stater.nl>2023-04-24 09:24:43 +0200
committerMike Vink <mike.vink@stater.nl>2023-04-24 09:24:43 +0200
commitc24c46ad58b1020ee204e5d5e9e5366d2b925212 (patch)
tree33f571237eae5ceabf1f364a7a211b3235a6900d /templates
parent9ea275a2e72fb7eee38d32be2f955a2a05ced682 (diff)
add pyproject to ansible flake
Diffstat (limited to 'templates')
-rw-r--r--templates/ansible/pyproject.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/ansible/pyproject.toml b/templates/ansible/pyproject.toml
new file mode 100644
index 0000000..037c592
--- /dev/null
+++ b/templates/ansible/pyproject.toml
@@ -0,0 +1,17 @@
+[tool.poetry]
+name = "dev-env"
+version = "0.1.0"
+description = "Virtualenv"
+authors = ["Mike Vink"]
+readme = "README.md"
+packages = []
+
+[tool.poetry.dependencies]
+python = "^3.10"
+awxkit = "^22.0.0"
+ansible-lint = {version="^6.14.0", markers = "platform_system != 'Windows'"}
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"