2023-01-19 02:21:37 +08:00
|
|
|
[project]
|
|
|
|
name = "flaskr"
|
|
|
|
version = "1.0.0"
|
|
|
|
description = "The basic blog app built in the Flask tutorial."
|
|
|
|
readme = "README.rst"
|
2024-11-02 09:00:39 +08:00
|
|
|
license = {file = "LICENSE.txt"}
|
2023-01-19 02:21:37 +08:00
|
|
|
maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}]
|
2024-11-02 09:00:39 +08:00
|
|
|
classifiers = ["Private :: Do Not Upload"]
|
2023-01-19 02:21:37 +08:00
|
|
|
dependencies = [
|
|
|
|
"flask",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Documentation = "https://flask.palletsprojects.com/tutorial/"
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
test = ["pytest"]
|
|
|
|
|
|
|
|
[build-system]
|
2023-06-28 05:03:41 +08:00
|
|
|
requires = ["flit_core<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
|
|
|
[tool.flit.module]
|
|
|
|
name = "flaskr"
|
|
|
|
|
|
|
|
[tool.flit.sdist]
|
|
|
|
include = [
|
|
|
|
"tests/",
|
|
|
|
]
|
2023-01-19 02:21:37 +08:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
testpaths = ["tests"]
|
|
|
|
filterwarnings = ["error"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
source = ["flaskr", "tests"]
|
2023-11-10 01:20:27 +08:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
src = ["src"]
|