lbry-android-sdk/p4a/pythonforandroid/recipes/flask/__init__.py

18 lines
393 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.recipe import PythonRecipe
2017-08-13 03:24:00 +02:00
class FlaskRecipe(PythonRecipe):
2022-12-02 21:15:34 +01:00
version = '2.0.3'
2017-08-13 03:24:00 +02:00
url = 'https://github.com/pallets/flask/archive/{version}.zip'
2022-12-02 21:15:34 +01:00
depends = ['setuptools']
2017-08-13 03:24:00 +02:00
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click']
call_hostpython_via_targetpython = False
install_in_hostpython = False
recipe = FlaskRecipe()