2018-10-07 16:59:03 +02:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
2018-05-15 23:14:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
class SetuptoolsRecipe(PythonRecipe):
|
2018-10-07 16:59:03 +02:00
|
|
|
version = '40.0.0'
|
|
|
|
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.zip'
|
2018-05-15 23:14:08 +02:00
|
|
|
|
2018-10-07 16:59:03 +02:00
|
|
|
depends = [('python2', 'python3crystax')]
|
2018-05-15 23:14:08 +02:00
|
|
|
|
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
install_in_hostpython = True
|
|
|
|
|
|
|
|
|
2018-10-07 16:59:03 +02:00
|
|
|
recipe = SetuptoolsRecipe()
|