mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 0.9.0: - Migrate to pyproject.toml project layout (PEP 621). - New output formats: `asciidoc`, various `*grid` and `*outline` formats. - New output features: vertical row alignment, separating lines. - New input format: list of dataclasses (Python 3.7 or later). - Support infinite iterables as row indices. - Improve column width options. - Improve support for ANSI escape sequences and document the behavior. - Various bug fixes. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
530 B
BlitzBasic
22 lines
530 B
BlitzBasic
SUMMARY = "Pretty-print tabular data"
|
|
HOMEPAGE = "https://github.com/astanin/python-tabulate"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6ad1430c0c4824ec6a5dbb9754b011d7"
|
|
|
|
SRC_URI[sha256sum] = "0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-setuptools-scm-native \
|
|
${PYTHON_PN}-toml-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
${PYTHON_PN}-html \
|
|
${PYTHON_PN}-core \
|
|
${PYTHON_PN}-io \
|
|
${PYTHON_PN}-math \
|
|
${PYTHON_PN}-profile \
|
|
"
|