Minimum viable product

This commit is contained in:
Punnamaraju Vinayaka Tejas 2023-07-11 14:09:54 +05:30
commit 40e347616f
24 changed files with 748 additions and 0 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[project]
name = "flaskr"
version = "1.0.0"
dependencies = [
"flask",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["instance"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["flaskr"]