1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
Source: flask
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Thomas Goirand <zigo@debian.org>,
Ondřej Nový <onovy@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-python (>= 2.20160609~),
python3-all,
python3-asgiref,
python3-blinker,
python3-click (>= 8.0),
python3-dotenv,
python3-itsdangerous (>= 2.0),
python3-jinja2 (>= 3.0),
python3-pallets-sphinx-themes,
python3-pytest (>= 3),
python3-tomli,
python3-setuptools,
python3-sphinx,
python3-sphinx-issues,
python3-sphinx-tabs,
python3-werkzeug (>= 2.2.2),
Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/python-team/packages/flask.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/flask
Homepage: http://flask.pocoo.org/
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no
Package: python3-flask
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Recommends:
python3-asgiref,
python3-blinker,
python3-click (>= 8.0),
python3-dotenv,
python3-itsdangerous (>= 2.0),
python3-pkg-resources,
python3-werkzeug (>= 2.2.2),
Suggests:
python-flask-doc,
Description: micro web framework based on Werkzeug and Jinja2 - Python 3.x
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the Python 3.x module.
Package: python-flask-doc
Section: doc
Architecture: all
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Recommends:
python3-flask,
Multi-Arch: foreign
Description: micro web framework based on Werkzeug and Jinja2 - documentation
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
intentions. A minimal Flask application looks like that:
.
from flask import Flask
app = Flask(__name__)
.
@app.route("/")
def hello():
return "Hello World!"
.
if __name__ == '__main__':
app.run()
.
This package contains the documentation for Flask.
|