Metadata-Version: 2.0
Name: djangorestframework-simplejwt
Version: 1.0
Summary: A minimal JSON Web Token authentication plugin for Django REST Framework
Home-page: https://github.com/davesque/django-rest-framework-simplejwt
Author: David Sanders
Author-email: davesque@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
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 :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: django
Requires-Dist: djangorestframework
Requires-Dist: python-jose

Simple JWT
==========

A minimal JSON Web Token authentication plugin for the `Django REST
Framework <http://www.django-rest-framework.org/>`_.

.. image:: https://travis-ci.org/davesque/django-rest-framework-simplejwt.svg?branch=master
  :target: https://travis-ci.org/davesque/django-rest-framework-simplejwt
.. image:: https://codecov.io/gh/davesque/django-rest-framework-simplejwt/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/davesque/django-rest-framework-simplejwt

----

Simple JWT provides a JSON Web Token authentication backend for the Django REST
Framework.  This project has the following goals:

* Provide a minimal set of features -- The aim is not to provide all features
  which could be implemented on top of the JWT specification.
* Discourage crypto negotiation -- Protocols which allow for negotiation of
  crypto algorithms are generally considered to be weak by design.  Simple JWT
  assumes that most use cases will be covered by sha-256 HMAC signing with a
  shared secret.
* Ease of installation -- It should be easy to get up and running with Simple
  JWT.


