23 lines
447 B
Python
23 lines
447 B
Python
|
|
from pythonforandroid.toolchain import (
|
|
PythonRecipe,
|
|
Recipe,
|
|
current_directory,
|
|
info,
|
|
shprint,
|
|
)
|
|
from os.path import join
|
|
import sh
|
|
|
|
|
|
class SetuptoolsRecipe(PythonRecipe):
|
|
version = '18.3.1'
|
|
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()
|