2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
class KiwiSolverRecipe(CppCompiledComponentsPythonRecipe):
|
|
|
|
site_packages_name = 'kiwisolver'
|
|
|
|
version = '0.1.3'
|
|
|
|
url = 'https://github.com/nucleic/kiwi/archive/master.zip'
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['setuptools']
|
|
|
|
|
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = KiwiSolverRecipe()
|