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

15 lines
388 B
Python
Raw Permalink Normal View History

2022-12-02 21:15:34 +01:00
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()