/usr/lib/python2.6/dist-packages/lazyarray-0.1.0.egg-info is in python-lazyarray 0.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | Metadata-Version: 1.0
Name: lazyarray
Version: 0.1.0
Summary: a Python package that provides a lazily-evaluated numerical array class, larray, based on and compatible with NumPy arrays.
Home-page: http://bitbucket.org/apdavison/lazyarray/
Author: Andrew P. Davison
Author-email: andrew.davison@unic.cnrs-gif.fr
License: Modified BSD
Description:
=========
lazyarray
=========
lazyarray is a Python package that provides a lazily-evaluated numerical array
class, ``larray``, based on and compatible with NumPy arrays.
Lazy evaluation means that any operations on the array (potentially including
array construction) are not performed immediately, but are delayed until
evaluation is specifically requested. Evaluation of only parts of the array is
also possible.
Use of an ``larray`` can potentially save considerable computation time
and memory in cases where:
* arrays are used conditionally (i.e. there are cases in which the array is
never used)
* only parts of an array are used (for example in distributed computation,
in which each MPI node operates on a subset of the elements of the array)
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
|