Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions pythonforandroid/recipes/setuptools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@

from pythonforandroid.toolchain import (
PythonRecipe,
Recipe,
current_directory,
info,
shprint,
)
from os.path import join
import sh
from pythonforandroid.toolchain import PythonRecipe


class SetuptoolsRecipe(PythonRecipe):
version = '18.3.1'
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.tar.gz'

depends = ['python2']
depends = [('python2', 'python3crystax')]

call_hostpython_via_targetpython = False
install_in_hostpython = True
Expand Down