From 3ed06a00cb3cf5ddc16f6776d036658a73a61eba Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 9 Nov 2023 17:45:25 +1300 Subject: [PATCH] templates/app: Add missing pyproject.toml & poetry.lock files We didn't need them before, but as the flake template now refers to stuff which uses these files to evaluate we must add them to the repo. --- templates/app/poetry.lock | 7 +++++++ templates/app/pyproject.toml | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 templates/app/poetry.lock create mode 100644 templates/app/pyproject.toml diff --git a/templates/app/poetry.lock b/templates/app/poetry.lock new file mode 100644 index 000000000..24cf95de6 --- /dev/null +++ b/templates/app/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "81b2fa642d7f2d1219cf80112ace12d689d053d81be7f7addb98144d56fc0fb2" diff --git a/templates/app/pyproject.toml b/templates/app/pyproject.toml new file mode 100644 index 000000000..842318f1a --- /dev/null +++ b/templates/app/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "app" +version = "0.1.0" +description = "" +authors = ["Your Name "] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"