blob: 159ded66057a3382c89e642a6f9e4363de1a9761 [file] [log] [blame]
Brad Bishop8af1e9a2015-11-09 14:43:12 -05001SUMMARY = "Fast and simple WSGI-framework for small web-applications."
2DESCRIPTION = "Bottle is a fast and simple micro-framework for small web \
3applications. It offers request dispatching (Routes) with url parameter \
4support, templates, a built-in HTTP Server and adapters for many third \
5party WSGI/HTTP-server and template engines - all in a single file and \
6with no dependencies other than the Python Standard Library."
7HOMEPAGE = "http://bottlepy.org/"
8SECTION = "devel/python"
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=94b9b2cc7e46ccea87e00af8970826b5"
11
12inherit allarch
13inherit setuptools
Brad Bishopc1c98002018-03-16 11:16:46 -040014inherit pypi
Brad Bishop8af1e9a2015-11-09 14:43:12 -050015
Brad Bishop8b49f2a2016-09-10 11:43:30 -040016RDEPENDS_${PN} += " \
Brad Bishop19787662018-06-07 18:54:29 -040017 python-email \
Brad Bishop8b49f2a2016-09-10 11:43:30 -040018 python-json \
19 python-netserver \
20 "
Brad Bishop68ac01e2015-11-13 09:08:41 -050021
22PROVIDES += "${PN}-app"
Patrick Williams77bf1152016-09-13 22:14:18 -050023PACKAGE_BEFORE_PN += "${PN}-app"
Brad Bishop68ac01e2015-11-13 09:08:41 -050024
25SUMMARY_${PN}-app = "${SRCNAME} app"
26RDEPENDS_${PN}-app = "${PN}"
Patrick Williams77bf1152016-09-13 22:14:18 -050027FILES_${PN}-app = "${bindir}/bottle.py*"
Brad Bishop8af1e9a2015-11-09 14:43:12 -050028
29BBCLASSEXTEND = "nativesdk"