flask/pyproject.toml

40 lines
729 B
TOML
Raw Normal View History

2023-01-18 09:50:41 -08:00
[project]
2024-09-06 00:18:20 +01:00
name = "flaskr"
version = "1.0.0"
description = "The basic blog app built in the Flask tutorial."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
2023-01-18 09:50:41 -08:00
maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}]
dependencies = [
2024-09-06 00:18:20 +01:00
"flask",
2023-01-18 09:50:41 -08:00
]
[project.urls]
2024-09-06 00:18:20 +01:00
Documentation = "https://flask.palletsprojects.com/tutorial/"
2023-01-18 09:50:41 -08:00
[project.optional-dependencies]
2024-09-06 00:18:20 +01:00
test = ["pytest"]
2023-01-18 09:50:41 -08:00
[build-system]
2023-06-27 14:03:25 -07:00
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
2023-01-18 09:50:41 -08:00
2023-06-27 14:03:25 -07:00
[tool.flit.module]
2024-09-06 00:18:20 +01:00
name = "flaskr"
2023-06-27 14:03:25 -07:00
[tool.flit.sdist]
include = [
"tests/",
]
2023-01-18 09:50:41 -08:00
[tool.pytest.ini_options]
testpaths = ["tests"]
2024-09-06 00:18:20 +01:00
filterwarnings = ["error"]
2023-01-18 09:50:41 -08:00
[tool.coverage.run]
branch = true
2024-09-06 00:18:20 +01:00
source = ["flaskr", "tests"]
2023-11-09 09:20:27 -08:00
[tool.ruff]
src = ["src"]