Brad Bishop | 8af1e9a | 2015-11-09 14:43:12 -0500 | [diff] [blame^] | 1 | SUMMARY = "Fast and simple WSGI-framework for small web-applications." |
| 2 | DESCRIPTION = "Bottle is a fast and simple micro-framework for small web \ |
| 3 | applications. It offers request dispatching (Routes) with url parameter \ |
| 4 | support, templates, a built-in HTTP Server and adapters for many third \ |
| 5 | party WSGI/HTTP-server and template engines - all in a single file and \ |
| 6 | with no dependencies other than the Python Standard Library." |
| 7 | HOMEPAGE = "http://bottlepy.org/" |
| 8 | SECTION = "devel/python" |
| 9 | LICENSE = "MIT" |
| 10 | LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=94b9b2cc7e46ccea87e00af8970826b5" |
| 11 | |
| 12 | inherit allarch |
| 13 | inherit setuptools |
| 14 | |
| 15 | # bottle doesn't send email...it uses a utility in here to parse rfc1123 and rfc850 timestamps. |
| 16 | RDEPENDS_${PN} += "python-email" |
| 17 | |
| 18 | BBCLASSEXTEND = "nativesdk" |