2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import CythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PyProjRecipe(CythonRecipe):
|
2022-12-02 21:15:34 +01:00
|
|
|
version = '1.9.6'
|
|
|
|
url = 'https://github.com/pyproj4/pyproj/archive/v{version}rel.zip'
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['setuptools']
|
2017-08-13 03:24:00 +02:00
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = PyProjRecipe()
|