Metadata-Version: 2.1
Name: django-microsoft-auth
Version: 1.3.0
Summary: Simple app to enable Microsoft Account, Office 365 Enterprise, Azure AD, and Xbox Live authentication as a Django authentication backend.
Home-page: https://github.com/AngellusMortis/django_microsoft_auth
Author: Christopher Bailey
Author-email: cbailey@mort.is
License: MIT license
Description: =======================================
        Django Microsoft Authentication Backend
        =======================================
        
        
        .. image:: https://img.shields.io/pypi/v/django_microsoft_auth.svg
            :target: https://pypi.python.org/pypi/django_microsoft_auth
            :alt: PyPi
        
        .. image:: https://img.shields.io/pypi/pyversions/django_microsoft_auth.svg
            :target: https://pypi.python.org/pypi/django_microsoft_auth
            :alt: Python Versions
        
        .. image:: https://travis-ci.org/AngellusMortis/django_microsoft_auth.svg?branch=master
            :target: https://travis-ci.org/AngellusMortis/django_microsoft_auth/
            :alt: Travis CI
        
        .. image:: https://readthedocs.org/projects/django-microsoft-auth/badge/?version=latest
            :target: https://django-microsoft-auth.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation
        
        .. image:: https://pyup.io/repos/github/AngellusMortis/django_microsoft_auth/shield.svg
            :target: https://pyup.io/repos/github/AngellusMortis/django_microsoft_auth/
            :alt: Updates
        
        .. image:: https://coveralls.io/repos/github/AngellusMortis/django_microsoft_auth/badge.svg?branch=master
            :target: https://coveralls.io/github/AngellusMortis/django_microsoft_auth?branch=master
            :alt: Coverage
        
        .. image:: https://api.codeclimate.com/v1/badges/ea41b61fa3a1e22e92e9/maintainability
           :target: https://codeclimate.com/github/AngellusMortis/django_microsoft_auth/maintainability
           :alt: Maintainability
        
        .. image:: https://api.codeclimate.com/v1/badges/ea41b61fa3a1e22e92e9/test_coverage
           :target: https://codeclimate.com/github/AngellusMortis/django_microsoft_auth/test_coverage
           :alt: Test Coverage
        
        
        Simple app to enable Microsoft Account, Office 365 and Xbox Live authentcation
        as a Django authentcation backend.
        
        
        * Free software: MIT license
        * Documentation: https://django-microsoft-auth.readthedocs.io.
        
        Features
        --------
        
        * Provides Django authentication backend to do Microsoft authentication
          (including Microsoft accounts, Office 365 accounts and Azure AD accounts)
          and Xbox Live authentication.
        
        * Provides Microsoft OAuth client to interfacing with Microsoft accounts
        
        Python/Django support
        ---------------------
        
        `django_microsoft_auth` follows the same `support cycle as Django <https://www.djangoproject.com/download/#supported-versions>`_,
        with one exception: no Python 2 support. If you absoutely need Python 2.7
        support, everything should largely already work, but you may need to patch
        `microsoft_auth.admin` and/or other files to get it to work.
        
        Supported python versions:  3.4+ (for Django versions less than 2.1)
        
        Supported Django version: 1.11 LTS, 2.0+
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the
        `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        1.3.0 (2019-3-5)
        ----------------
        
        * Adds support for other tenant IDs for Microsoft
          authentication (thanks aviv)
        
        1.2.1 (2019-2-28)
        -----------------
        
        * Adds missing migration for changing `microsoft_id` from 32 to 36 length
        
        1.2.0 (2019-1-13)
        -----------------
        
        * Adds various checks and logging to validate setup to help with debugging
        * Adds support for `http://localhost` as a redirect URI base if `DEBUG` is
          enabled
        * Fixes Javascript message passing if using a non-standard port (something
          other than 80 or 443)
        
        1.1.0 (2018-7-3)
        ----------------
        * Removes o365 option. New authorization URL works well enough for both
            * Xbox Live Auth still uses old Microsoft Auth URL
            * 'o365' will still work as a MICROSOFT_AUTH_LOGIN_TYPE value,
              but you should change it to 'ma'
        * Adds extras:
            * `ql`: DjangoQL package and support
            * `test`: test dependencies (same as test_requires packages)
            * `dev`: `ql`+`test` and extra dev only dependencies like
              `twine` and `pip-tools`
        * Pip 10 support (thanks Shigumitsu!)
        * Fixes max length of o365 IDs (thanks Shigumitsu!)
        
        1.0.6 (2018-4-8)
        ----------------
        * Added patched username validator to allow spaces for usernames for
          Xbox Live Gamertags
        
        1.0.5 (2018-4-8)
        ----------------
        * Added missing templates and static files to MANIFEST
        
        1.0.4 (2017-12-2)
        -----------------
        
        * Updated Django category to include 2.0
        
        1.0.3 (2017-12-2)
        -----------------
        
        * Updated for Django 2.0
        
        1.0.2 (2017-11-27)
        ------------------
        
        * Changed Development Status category to Stable
        
        1.0.0 (2017-11-19)
        ------------------
        
        * First release on PyPI.
        
Keywords: django_microsoft_auth
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Provides-Extra: ql
Provides-Extra: dev
Provides-Extra: test
