flask/examples/javascript/pyproject.toml

34 lines
736 B
TOML
Raw Normal View History

[project]
name = "js_example"
version = "1.1.0"
description = "Demonstrates making AJAX requests to Flask."
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/patterns/javascript/"
[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 = "js_example"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = ["error"]
[tool.coverage.run]
branch = true
source = ["js_example", "tests"]
2023-11-10 01:20:27 +08:00
[tool.ruff]
src = ["src"]