Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | SUMMARY = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." |
| 2 | HOMEPAGE = "https://github.com/bw2/ConfigArgParse" |
| 3 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943" |
| 5 | |
Andrew Geissler | d221e03 | 2020-07-10 16:13:21 -0500 | [diff] [blame] | 6 | SRC_URI[md5sum] = "8978866babc7ff0994f691ebe48b5aba" |
| 7 | SRC_URI[sha256sum] = "edd17be986d5c1ba2e307150b8e5f5107aba125f3574dddd02c85d5cdcfd37dc" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | |
| 9 | PYPI_PACKAGE = "ConfigArgParse" |
| 10 | |
| 11 | inherit pypi setuptools3 |
| 12 | |
| 13 | PACKAGECONFIG ?= "yaml" |
| 14 | PACKAGECONFIG[yaml] = ",,,${PYTHON_PN}-pyyaml" |
| 15 | |
| 16 | RDEPENDS_${PN} += "\ |
| 17 | ${PYTHON_PN}-core \ |
| 18 | ${PYTHON_PN}-shell \ |
| 19 | " |
| 20 | |
| 21 | BBCLASSEXTEND = "native nativesdk" |
Brad Bishop | 996bc45 | 2019-12-02 13:05:15 -0500 | [diff] [blame] | 22 | |