flask/examples/tutorial/pyproject.toml

41 lines
771 B
TOML
Raw Normal View History

[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"}
maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}]
2024-11-02 09:00:39 +08:00
classifiers = ["Private :: Do Not Upload"]
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/",
]
[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"]