17 lines
393 B
Python
17 lines
393 B
Python
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
class FlaskRecipe(PythonRecipe):
|
|
version = '2.0.3'
|
|
url = 'https://github.com/pallets/flask/archive/{version}.zip'
|
|
|
|
depends = ['setuptools']
|
|
|
|
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click']
|
|
|
|
call_hostpython_via_targetpython = False
|
|
install_in_hostpython = False
|
|
|
|
|
|
recipe = FlaskRecipe()
|