blob: 2e44c3d801a781bdf377970041cd77726865f603 [file] [log] [blame]
Andrew Geissler89770b02020-06-13 10:40:47 -05001SUMMARY = "Python decorator utilities"
2DESCRIPTION = "\
3The aim of the decorator module it to simplify the usage of decorators \
4for the average programmer, and to popularize decorators by showing \
5various non-trivial examples. Of course, as all techniques, decorators \
6can be abused and you should not try to solve every problem with a \
7decorator, just because you can."
8
9LICENSE = "BSD-2-Clause"
10LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=be2fd2007972bf96c08af3293d728b22"
11
Andrew Geissler5199d832021-09-24 16:47:35 -050012SRC_URI[sha256sum] = "e59913af105b9860aa2c8d3272d9de5a56a4e608db9a2f167a8480b323d529a7"
Andrew Geissler89770b02020-06-13 10:40:47 -050013
14inherit pypi setuptools3
15
Patrick Williams213cb262021-08-07 19:21:33 -050016RDEPENDS:${PN} += "\
Andrew Geissler89770b02020-06-13 10:40:47 -050017 ${PYTHON_PN}-stringold \
18 "