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"