8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9746a8 commit 08072daCopy full SHA for 08072da
pythonforandroid/recipes/levenshtein/__init__.py
@@ -0,0 +1,14 @@
1
+from pythonforandroid.toolchain import CompiledComponentsPythonRecipe
2
+
3
4
+class LevenshteinRecipe(CompiledComponentsPythonRecipe):
5
+ name="levenshtein"
6
+ version = '0.12.0'
7
+ url = 'https://pypi.python.org/packages/source/p/python-Levenshtein/python-Levenshtein-{version}.tar.gz'
8
+ depends = [('python2', 'python3'), 'setuptools']
9
10
+ call_hostpython_via_targetpython = False
11
+ install_in_targetpython = False
12
+ install_in_hostpython = True
13
14
+recipe = LevenshteinRecipe()
0 commit comments