1
0

METADATA 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. Metadata-Version: 2.1
  2. Name: djangorestframework-simplejwt
  3. Version: 4.8.0
  4. Summary: A minimal JSON Web Token authentication plugin for Django REST Framework
  5. Home-page: https://github.com/jazzband/djangorestframework-simplejwt
  6. Author: David Sanders
  7. Author-email: davesque@gmail.com
  8. License: MIT
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Environment :: Web Environment
  12. Classifier: Framework :: Django
  13. Classifier: Framework :: Django :: 2.2
  14. Classifier: Framework :: Django :: 3.1
  15. Classifier: Framework :: Django :: 3.2
  16. Classifier: Intended Audience :: Developers
  17. Classifier: License :: OSI Approved :: MIT License
  18. Classifier: Operating System :: OS Independent
  19. Classifier: Programming Language :: Python
  20. Classifier: Programming Language :: Python :: 3
  21. Classifier: Programming Language :: Python :: 3.7
  22. Classifier: Programming Language :: Python :: 3.8
  23. Classifier: Programming Language :: Python :: 3.9
  24. Classifier: Topic :: Internet :: WWW/HTTP
  25. Requires-Python: >=3.7
  26. License-File: LICENSE.txt
  27. Requires-Dist: django
  28. Requires-Dist: djangorestframework
  29. Requires-Dist: pyjwt (<3,>=2)
  30. Provides-Extra: dev
  31. Requires-Dist: pytest-watch ; extra == 'dev'
  32. Requires-Dist: wheel ; extra == 'dev'
  33. Requires-Dist: twine ; extra == 'dev'
  34. Requires-Dist: ipython ; extra == 'dev'
  35. Requires-Dist: cryptography ; extra == 'dev'
  36. Requires-Dist: pytest-cov ; extra == 'dev'
  37. Requires-Dist: pytest-django ; extra == 'dev'
  38. Requires-Dist: pytest-xdist ; extra == 'dev'
  39. Requires-Dist: pytest ; extra == 'dev'
  40. Requires-Dist: tox ; extra == 'dev'
  41. Requires-Dist: flake8 ; extra == 'dev'
  42. Requires-Dist: pep8 ; extra == 'dev'
  43. Requires-Dist: isort ; extra == 'dev'
  44. Requires-Dist: Sphinx (<2,>=1.6.5) ; extra == 'dev'
  45. Requires-Dist: sphinx-rtd-theme (>=0.1.9) ; extra == 'dev'
  46. Requires-Dist: python-jose (==3.0.0) ; extra == 'dev'
  47. Provides-Extra: doc
  48. Requires-Dist: Sphinx (<2,>=1.6.5) ; extra == 'doc'
  49. Requires-Dist: sphinx-rtd-theme (>=0.1.9) ; extra == 'doc'
  50. Provides-Extra: lint
  51. Requires-Dist: flake8 ; extra == 'lint'
  52. Requires-Dist: pep8 ; extra == 'lint'
  53. Requires-Dist: isort ; extra == 'lint'
  54. Provides-Extra: python-jose
  55. Requires-Dist: python-jose (==3.0.0) ; extra == 'python-jose'
  56. Provides-Extra: test
  57. Requires-Dist: cryptography ; extra == 'test'
  58. Requires-Dist: pytest-cov ; extra == 'test'
  59. Requires-Dist: pytest-django ; extra == 'test'
  60. Requires-Dist: pytest-xdist ; extra == 'test'
  61. Requires-Dist: pytest ; extra == 'test'
  62. Requires-Dist: tox ; extra == 'test'
  63. Simple JWT
  64. ==========
  65. .. image:: https://jazzband.co/static/img/badge.svg
  66. :target: https://jazzband.co/
  67. :alt: Jazzband
  68. .. image:: https://github.com/jazzband/djangorestframework-simplejwt/workflows/Test/badge.svg
  69. :target: https://github.com/jazzband/djangorestframework-simplejwt/actions
  70. :alt: GitHub Actions
  71. .. image:: https://codecov.io/gh/jazzband/djangorestframework-simplejwt/branch/master/graph/badge.svg
  72. :target: https://codecov.io/gh/jazzband/djangorestframework-simplejwt
  73. .. image:: https://img.shields.io/pypi/v/djangorestframework-simplejwt.svg
  74. :target: https://pypi.python.org/pypi/djangorestframework-simplejwt
  75. .. image:: https://img.shields.io/pypi/pyversions/djangorestframework-simplejwt.svg
  76. :target: https://pypi.python.org/pypi/djangorestframework-simplejwt
  77. .. image:: https://img.shields.io/pypi/djversions/djangorestframework-simplejwt.svg
  78. :target: https://pypi.python.org/pypi/djangorestframework-simplejwt
  79. .. image:: https://readthedocs.org/projects/django-rest-framework-simplejwt/badge/?version=latest
  80. :target: https://django-rest-framework-simplejwt.readthedocs.io/en/latest/
  81. Abstract
  82. --------
  83. Simple JWT is a JSON Web Token authentication plugin for the `Django REST
  84. Framework <http://www.django-rest-framework.org/>`__.
  85. For full documentation, visit `django-rest-framework-simplejwt.readthedocs.io
  86. <https://django-rest-framework-simplejwt.readthedocs.io/en/latest/>`__.
  87. Looking for Maintainers
  88. -----------------------
  89. For more information, see `here
  90. <https://github.com/jazzband/djangorestframework-simplejwt/issues/207>`__.