diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2020-03-30 21:06:11 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2020-03-30 21:06:11 +0000 |
commit | 5f993b05a9378e848de0beffd1dd45db97dde092 (patch) | |
tree | 9ecc0eccb2584182a35dbdae3d615df31236490d | |
parent | math/jacal: Update version 1c4=>1c7 (diff) |
[NEW] devel/py-beautifultable: Print ASCII tables for terminals
This Package provides BeautifulTable class for easily printing tabular data in a
visually appealing ASCII format to a terminal.
Features included but not limited to:
- Full customization of the look and feel of the table
- Build the Table as you wish, By adding rows, or by columns or even mixing both
these approaches.
- Full support for colors using ANSI sequences or any library of your choice. It
just works.
- Plenty of predefined styles for multiple use cases and option to create custom
ones.
- Support for Unicode characters.
WWW: https://github.com/pri22296/beautifultable
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-beautifultable/Makefile | 20 | ||||
-rw-r--r-- | devel/py-beautifultable/distinfo | 3 | ||||
-rw-r--r-- | devel/py-beautifultable/pkg-descr | 14 |
4 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index d4360d1c935a..9deb5289bebc 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4159,6 +4159,7 @@ SUBDIR += py-banal SUBDIR += py-bandit SUBDIR += py-bcdoc + SUBDIR += py-beautifultable SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binaryornot diff --git a/devel/py-beautifultable/Makefile b/devel/py-beautifultable/Makefile new file mode 100644 index 000000000000..fc8ea0439f79 --- /dev/null +++ b/devel/py-beautifultable/Makefile @@ -0,0 +1,20 @@ +# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= beautifultable +PORTVERSION= 0.8.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Print ASCII tables for terminals + +LICENSE= MIT + +USES= python:3.4+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-beautifultable/distinfo b/devel/py-beautifultable/distinfo new file mode 100644 index 000000000000..906006be6d71 --- /dev/null +++ b/devel/py-beautifultable/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1585597878 +SHA256 (beautifultable-0.8.0.tar.gz) = d44d9551bbed7bfa88675324f84efb9aa857384d44e9fb21eb530f0a0badb815 +SIZE (beautifultable-0.8.0.tar.gz) = 19203 diff --git a/devel/py-beautifultable/pkg-descr b/devel/py-beautifultable/pkg-descr new file mode 100644 index 000000000000..030e681d57f1 --- /dev/null +++ b/devel/py-beautifultable/pkg-descr @@ -0,0 +1,14 @@ +This Package provides BeautifulTable class for easily printing tabular data in a +visually appealing ASCII format to a terminal. + +Features included but not limited to: +- Full customization of the look and feel of the table +- Build the Table as you wish, By adding rows, or by columns or even mixing both + these approaches. +- Full support for colors using ANSI sequences or any library of your choice. It + just works. +- Plenty of predefined styles for multiple use cases and option to create custom + ones. +- Support for Unicode characters. + +WWW: https://github.com/pri22296/beautifultable |