Skip to content

Commit

Permalink
templates/app: Add missing pyproject.toml & poetry.lock files
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
adisbladis committed Nov 9, 2023
1 parent f06c8ac commit 3ed06a0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
7 changes: 7 additions & 0 deletions templates/app/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions templates/app/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 3ed06a0

Please sign in to comment.