Metadata-Version: 1.1
Name: django-graph-auth
Version: 0.1.0
Summary: django-graph-auth is a Django application which provides simple mutations and queries for managing users with GraphQL.
Home-page: https://github.com/morgante/django-graph-auth
Author: Morgante Pell
Author-email: morgante.pell@morgante.net
License: MIT License
Description: django-graph-auth
        =======================
        
        django-graph-auth is a Django application which provides simple mutations and queries for managing users with GraphQL. It can register users, log in, reset users, and expose `JSON web tokens`_.
        
        .. _Django Rest Framework: http://www.django-rest-framework.org/
        
        .. _JSON web tokens: http://getblimp.github.io/django-rest-framework-jwt/
        
        Requirements
        ------------
        
        This has only been tested with:
        
        * Python: 3.5
        * Django: 1.10
        
        Setup
        -----
        
        Install from **pip**:
        
        .. code-block:: sh
        
            pip install django-graph-auth
        
        and then add it to your installed apps:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'graph_auth',
                ...
            )
        
        You will also need to add a middleware class to listen in on responses:
        
        Credits
        -------
        
        ``django-graph-auth`` was created by Morgante Pell (`@morgante
        <https://github.com/morgante>`_). It is based on (`django-rest-auth<https://github.com/Tivix/django-rest-auth>`_).
        
        
        History
        =======
        
        Pending
        -------
        
        * New release notes go here.
        
        0.0.1 (2016-10-10)
        -----------------
        
        * Initial release
        
Keywords: django middleware graphql api authentication jwt
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
