from pythonforandroid.toolchain import ( PythonRecipe, Recipe, current_directory, info, shprint, ) from os.path import join import sh class SetuptoolsRecipe(PythonRecipe): version = '18.5' url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.tar.gz' depends = ['python2'] call_hostpython_via_targetpython = False install_in_hostpython = True recipe = SetuptoolsRecipe()