2023-01-19 02:21:37 +08:00
|
|
|
[project]
|
|
|
|
name = "js_example"
|
|
|
|
version = "1.1.0"
|
|
|
|
description = "Demonstrates making AJAX requests to Flask."
|
|
|
|
readme = "README.rst"
|
|
|
|
license = {text = "BSD-3-Clause"}
|
|
|
|
maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}]
|
|
|
|
dependencies = ["flask"]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Documentation = "https://flask.palletsprojects.com/patterns/jquery/"
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2023-04-13 22:34:14 +08:00
|
|
|
test = ["pytest"]
|
2023-01-19 02:21:37 +08:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
testpaths = ["tests"]
|
|
|
|
filterwarnings = ["error"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
source = ["js_example", "tests"]
|