/
githubmirror
/
flask
Обзор
Документация
Войти
/
githubmirror
/
flask
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/tutorial/pyproject.toml
45 строк
873 B
David Lord
update dependencies
30 июл 2026, 20:25
30 июл 2026, 20:25
ff6fa22
Код
Авторство
О чём код?
[project] name = "flaskr" version = "1.0.0" description = "The basic blog app built in the Flask tutorial." readme = "README.rst" license = {file = "LICENSE.txt"} maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"}] classifiers = ["Private :: Do Not Upload"] dependencies = [ "flask", ] [project.urls] Documentation = "https://flask.palletsprojects.com/tutorial/" [project.optional-dependencies] test = ["pytest"] [build-system] 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"] [tool.ruff] src = ["src"] [tool.ruff.lint.isort] force-single-line = true order-by-type = false known-first-party = ["flaskr"]