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

14 lines
357 B
Python
Raw Normal View History

from pythonforandroid.recipe import CompiledComponentsPythonRecipe
class RegexRecipe(CompiledComponentsPythonRecipe):
name = 'regex'
2022-12-02 21:15:34 +01:00
version = '2019.06.08'
url = 'https://pypi.python.org/packages/source/r/regex/regex-{version}.tar.gz' # noqa
depends = ['setuptools']
2022-12-02 21:15:34 +01:00
call_hostpython_via_targetpython = False
recipe = RegexRecipe()