diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3-pyproject-metadata_0.9.1.bb')
-rw-r--r-- | meta/recipes-devtools/python/python3-pyproject-metadata_0.9.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pyproject-metadata_0.9.1.bb b/meta/recipes-devtools/python/python3-pyproject-metadata_0.9.1.bb new file mode 100644 index 0000000000..4c58da3c07 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pyproject-metadata_0.9.1.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "PEP 621 metadata parsing" | ||
2 | DESCRIPTION = "Dataclass for PEP 621 metadata with support for core \ | ||
3 | metadata generation \ | ||
4 | \ | ||
5 | This project does not implement the parsing of pyproject.toml containing \ | ||
6 | PEP 621 metadata.\ | ||
7 | \ | ||
8 | Instead, given a Python data structure representing PEP 621 metadata \ | ||
9 | (already parsed), it will validate this input and generate a \ | ||
10 | PEP 643-compliant metadata file (e.g. PKG-INFO)." | ||
11 | HOMEPAGE = "https://github.com/FFY00/python-pyproject-metadata" | ||
12 | LICENSE = "MIT" | ||
13 | LIC_FILES_CHKSUM = "file://LICENSE;md5=310439af287b0fb4780b2ad6907c256c" | ||
14 | |||
15 | PYPI_PACKAGE = "pyproject_metadata" | ||
16 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
17 | |||
18 | inherit pypi python_setuptools_build_meta | ||
19 | |||
20 | SRC_URI[sha256sum] = "b8b2253dd1b7062b78cf949a115f02ba7fa4114aabe63fa10528e9e1a954a816" | ||
21 | |||
22 | RDEPENDS:${PN} += " \ | ||
23 | python3-logging \ | ||
24 | python3-packaging \ | ||
25 | python3-profile \ | ||
26 | " | ||
27 | |||
28 | BBCLASSEXTEND = "native nativesdk" | ||