summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 5156197b9b4be716bb18f6019ae90d1f3f4fb816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "flaskr"
version = "1.0.0"
description = "The basic blog app built in the Flask tutorial."
dependencies = [
    "flask",
]

[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"

[tool.pytest.ini_options]
testpaths = ["tests"]

[tool.coverage.run]
branch = true
source = ["flaskr"]