b09e468ffb
* build Python 3.9.6 * use Python 3.9 docker image * fix pyjnius recipe * remove unused dependencies from cryptography recipe * fix PYTHON3_DLL_REL_PATH value * add idna requirement * Remove m abi flag from python lib (https://docs.python.org/3/whatsnew/3.8.html#build-and-c-api-changes) * aiohttp==3.6.0 * Add base Dockerfiles for builds
14 lines
No EOL
357 B
Python
14 lines
No EOL
357 B
Python
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
class SetuptoolsRecipe(PythonRecipe):
|
|
version = '51.0.0'
|
|
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.zip'
|
|
|
|
depends = [('python2', 'python3crystax')]
|
|
|
|
call_hostpython_via_targetpython = False
|
|
install_in_hostpython = True
|
|
|
|
|
|
recipe = SetuptoolsRecipe() |