diff --git a/pythonforandroid/recipes/selectolax/__init__.py b/pythonforandroid/recipes/selectolax/__init__.py new file mode 100644 index 000000000..475113493 --- /dev/null +++ b/pythonforandroid/recipes/selectolax/__init__.py @@ -0,0 +1,11 @@ +from pythonforandroid.recipe import PyProjectRecipe + + +class SelectolaxRecipe(PyProjectRecipe): + version = '0.4.10' + url = 'https://pypi.python.org/packages/source/s/selectolax/selectolax-{version}.tar.gz' + depends = ['setuptools'] + hostpython_prerequisites = ['cython==3.2.8'] + + +recipe = SelectolaxRecipe()