lbry-android-sdk/p4a/pythonforandroid/recipes/cppy/__init__.py
2022-12-02 15:15:34 -05:00

14 lines
388 B
Python

from pythonforandroid.recipe import PythonRecipe
class CppyRecipe(PythonRecipe):
site_packages_name = 'cppy'
version = '1.1.0'
url = 'https://github.com/nucleic/cppy/archive/{version}.zip'
call_hostpython_via_targetpython = False
# to be detected by the matplotlib install script
install_in_hostpython = True
depends = ['setuptools']
recipe = CppyRecipe()