Metadata-Version: 1.1
Name: napi
Version: 0.1
Summary: Array operations simplified
Home-page: http://github.com/abakan/napi
Author: Ahmet Bakan
Author-email: lordnapi@gmail.com
License: MIT License
Description: .. image:: https://secure.travis-ci.org/abakan/napi.png?branch=master
           :target: http://travis-ci.org/#!/abakan/napi
        
        napi
        ====
        
        napi is an abstract syntax tree transformer to simplify NumPy_ array
        operations.  In IPython, for example, you can use the following magic:
        
        .. code-block:: ipython
        
           In [1]: import napi
        
           In [2]: %napi
           napi ast transformer is turned ON
        
        to enable evaluation of the following code:
        
        .. code-block:: ipython
        
           In [3] from numpy import *
        
           In [4] 0 <= arange(6) < 6 and True
           Out[4]: array([ True,  True,  True,  True,  True,  True], dtype=bool)
        
        .. _NumPy: http://www.numpy.org/
        
        Installation
        -------------
        
        ::
        
          $ pip install -U napi
        
        
        Source Code
        -----------
        
        * https://github.com/abakan/napi
        
        
        License
        -------
        
        *napi* is available under MIT License. See LICENSE.txt for more details.
        
Keywords: abstract syntax tree transformer,IPython magic
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Provides: napi (0.1)
