diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2019-02-05 22:26:35 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2019-02-05 22:26:35 +0800 |
commit | 37d3a67ec032e4d2fd92a4d0446af923403306b5 (patch) | |
tree | b12b1d060f0e2ad97e1c11524ae1824a176b34e2 | |
parent | 99517d8e32c3d73f7a7ac960ec454c78678f3a0f (diff) | |
download | freebsd-ports-gnome-37d3a67ec032e4d2fd92a4d0446af923403306b5.tar.gz freebsd-ports-gnome-37d3a67ec032e4d2fd92a4d0446af923403306b5.tar.zst freebsd-ports-gnome-37d3a67ec032e4d2fd92a4d0446af923403306b5.zip |
Add py-datatest 0.9.3
Datatest provides testing tools for data validation and analysis. It supports
both pytest and unittest style testing.
You can use datatest for validation, test driven data-wrangling, auditing,
logging discrepancies, and checklists for measuring progress. It encourages a
structured approach for checking and tidying data.
WWW: https://github.com/shawnbrown/datatest
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-datatest/Makefile | 20 | ||||
-rw-r--r-- | devel/py-datatest/distinfo | 3 | ||||
-rw-r--r-- | devel/py-datatest/pkg-descr | 8 |
4 files changed, 32 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 9dde3bb56b81..0c904919de1b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4514,6 +4514,7 @@ SUBDIR += py-dal SUBDIR += py-darcsver SUBDIR += py-darts.util.lru + SUBDIR += py-datatest SUBDIR += py-dateutil SUBDIR += py-dateutils SUBDIR += py-datrie diff --git a/devel/py-datatest/Makefile b/devel/py-datatest/Makefile new file mode 100644 index 000000000000..855291525afb --- /dev/null +++ b/devel/py-datatest/Makefile @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= datatest +PORTVERSION= 0.9.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Testing tools for data validation and analysis + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-datatest/distinfo b/devel/py-datatest/distinfo new file mode 100644 index 000000000000..2d7a2579585d --- /dev/null +++ b/devel/py-datatest/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1549045876 +SHA256 (datatest-0.9.3.tar.gz) = a45c7a0c40e82daf80933d029eec99416b9f51c80e65e606f6f85f7fdebe2392 +SIZE (datatest-0.9.3.tar.gz) = 88260 diff --git a/devel/py-datatest/pkg-descr b/devel/py-datatest/pkg-descr new file mode 100644 index 000000000000..e0c07213aebe --- /dev/null +++ b/devel/py-datatest/pkg-descr @@ -0,0 +1,8 @@ +Datatest provides testing tools for data validation and analysis. It supports +both pytest and unittest style testing. + +You can use datatest for validation, test driven data-wrangling, auditing, +logging discrepancies, and checklists for measuring progress. It encourages a +structured approach for checking and tidying data. + +WWW: https://github.com/shawnbrown/datatest |