pkgsrc-wip/py-dimarray/Makefile
Kamel Ibn Aziz Derouiche ecfd05b3ea Import py27-dimarray-0.1.8 as wip/py-dimarray.
dimarray is a package to handle numpy arrays with labelled dimensions and axes
Inspired from pandas, it includes advanced alignment and reshaping features
and as well as missing-value (NaN) handling.

The main difference with pandas is that it is generalized to N dimensions, and
behaves more closely to a numpy array. The axes do not have fixed names
('index', 'columns', etc...) but are given a meaningful name by the user
(e.g. 'time', 'items', 'lon' ...). This is especially useful for high
dimensional problems such as sensitivity analyses.

A natural I/O format for such an array is netCDF, common in geophysics,
which relies on the netCDF4 package, and supports metadata.CVS: ----------------------------------------------------------------------
2014-07-22 18:42:18 +00:00

18 lines
517 B
Makefile

# $NetBSD: Makefile,v 1.1 2014/07/22 18:42:18 jihbed Exp $
DISTNAME= dimarray-0.1.8
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= https://pypi.python.org/packages/source/d/dimarray/
MAINTAINER= jihbed.research@gmail.com
HOMEPAGE= http://dimarray.readthedocs.org
COMMENT= Numpy array with labelled dimensions and axes, dimension
LICENSE= 2-clause-bsd
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"