blob: 2c586556d21f9fa40b85184e7c48233986a416c6 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "Tornado is an open source version of the scalable, non-blocking web server and tools that power FriendFeed."
2DESCRIPTION = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. \
3By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long \
4polling, WebSockets, and other applications that require a long-lived connection to each user."
5HOMEPAGE = "http://www.tornadoweb.org/en/stable/"
6LICENSE = "Apache-2.0"
7LIC_FILES_CHKSUM = "file://setup.py;startline=2;endline=15;md5=5ab7571a79ad62d0ca7aea308bac7560"
8
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009SRC_URI[md5sum] = "ab41f6765d58089f30ba51e8ec084a7b"
10SRC_URI[sha256sum] = "1fb8e494cd46c674d86fac5885a3ff87b0e283937a47d74eb3c02a48c9e89ad0"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050011
12RDEPENDS_${PN} += "${PYTHON_PN}-compression ${PYTHON_PN}-numbers ${PYTHON_PN}-email ${PYTHON_PN}-subprocess \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013 ${PYTHON_PN}-pkgutil ${PYTHON_PN}-html ${PYTHON_PN}-json ${PYTHON_PN}-certifi ${PYTHON_PN}-threading"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050014
15RDEPENDS_${PN}-test += "${PN} ${PYTHON_PN}-unittest"
16
17PACKAGES =+ "\
18 ${PN}-test \
19"
20
21FILES_${PN}-test = " \
22 ${libdir}/${PYTHON_DIR}/site-packages/*/test \
23 ${libdir}/${PYTHON_DIR}/site-packages/*/testing.py* \
24"