Skip to content

Commit b4fac4f

Browse files
committed
Added Flask recipe
1 parent 345057c commit b4fac4f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
from pythonforandroid.toolchain import PythonRecipe, shprint
3+
import sh
4+
5+
6+
class FlaskRecipe(PythonRecipe):
7+
version = 'master'
8+
url = 'https://github.com/pallets/flask/archive/{version}.zip'
9+
10+
depends = [('python2', 'python3'), 'setuptools']
11+
12+
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click']
13+
14+
call_hostpython_via_targetpython = False
15+
install_in_hostpython = False
16+
17+
18+
recipe = FlaskRecipe()

0 commit comments

Comments
 (0)