mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 15:37:40 -04:00
Changes since 0.8.9: - New output formats: `asciidoc`, various `*grid` and `*outline` formats. - New output features: vertical row alignment, separating lines. - New input format: list of dataclasses. - Support infinite iterables as row indices. - Improve column width options. - Improve support for ANSI escape sequences and document the behavior. - Column width parameter. PR: 282735 Approved by: skreuzer@ (maintainer)
22 lines
630 B
Makefile
22 lines
630 B
Makefile
PORTNAME= tabulate
|
|
PORTVERSION= 0.9.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Pretty-print tabular data in Python
|
|
WWW= https://github.com/astanin/python-tabulate
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=3.4.3.2:devel/py-setuptools-scm@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}setuptools>=61.2.0:devel/py-setuptools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|