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

15 lines
383 B
Python
Raw Normal View History

2022-11-29 21:35:24 +01:00
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
class CythonRecipe(CompiledComponentsPythonRecipe):
version = '0.29.28'
url = 'https://github.com/cython/cython/archive/{version}.tar.gz'
site_packages_name = 'cython'
depends = ['setuptools']
call_hostpython_via_targetpython = False
install_in_hostpython = True
recipe = CythonRecipe()