Metadata-Version: 1.1
Name: django-numpy
Version: 1.0.0
Summary: Application for Django projects that adds some utilities and integration tools with Numpy.
Home-page: https://github.com/PeRDy/django-numpy
Author: José Antonio Perdiguero López
Author-email: perdy.hh@gmail.com
License: GPLv3
Download-URL: https://github.com/PeRDy/django-numpy
Description: ============
        Django Numpy
        ============
        
        :Version: 1.0.0
        :DjangoNumpy: Production/Stable
        :Author: José Antonio Perdiguero López
        
        Django Numpy is an application for Django projects that adds some utilities and integration tools with Numpy.
        
        Quick start
        ===========
        
        #. Install this package using pip::
        
            pip install django-numpy
        
        #. Add *PROJECT_PATH* to your django settings module.
        #. Add *status* to your **INSTALLED_APPS** settings like this::
        
            INSTALLED_APPS = (
                ...
                'django_numpy',
            )
        
        Database Fields
        ===============
        
        This package adds a new Field type that manages numpy arrays. This field is based on django ArrayField, that
        *only works with PostgreSQL backend*. The **NumpyArrayField** behave just like Django's ArrayField so all parameters
        defined in `official docs <https://docs.djangoproject.com/en/1.10/ref/contrib/postgres/fields/#arrayfield>`_.
        
Keywords: python django database numpy
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
