2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
class FeedparserPyRecipe(PythonRecipe):
|
|
|
|
version = '5.2.1'
|
|
|
|
url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz'
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['setuptools']
|
2017-08-13 03:24:00 +02:00
|
|
|
site_packages_name = 'feedparser'
|
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = FeedparserPyRecipe()
|