11 lines
236 B
Python
11 lines
236 B
Python
|
from pythonforandroid.recipe import PythonRecipe
|
||
|
|
||
|
|
||
|
class SixRecipe(PythonRecipe):
|
||
|
version = '1.15.0'
|
||
|
url = 'https://pypi.python.org/packages/source/s/six/six-{version}.tar.gz'
|
||
|
depends = ['setuptools']
|
||
|
|
||
|
|
||
|
recipe = SixRecipe()
|