11 lines
279 B
Python
11 lines
279 B
Python
from pythonforandroid.recipe import CythonRecipe
|
|
|
|
|
|
class PyProjRecipe(CythonRecipe):
|
|
version = '1.9.6'
|
|
url = 'https://github.com/pyproj4/pyproj/archive/v{version}rel.zip'
|
|
depends = ['setuptools']
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
recipe = PyProjRecipe()
|