Metadata-Version: 2.1
Name: django-centralauth
Version: 1.2.0
Summary: Centralized authentication / authorization.
Home-page: https://github.com/moccu/django-centralauth
Author: Moccu GmbH & Co. KG
Author-email: info@moccu.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/moccu/django-centralauth/issues
Project-URL: Source, https://github.com/moccu/django-centralauth
Description: django-centralauth
        ==================
        
        .. image:: https://img.shields.io/pypi/v/django-centralauth.svg
           :target: https://pypi.org/project/django-centralauth/
           :alt: Latest Version
        
        .. image:: https://codecov.io/gh/moccu/django-centralauth/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/moccu/django-centralauth
           :alt: Coverage Status
        
        .. image:: https://readthedocs.org/projects/django-centralauth/badge/?version=latest
           :target: https://django-centralauth.readthedocs.io/en/stable/?badge=latest
           :alt: Documentation Status
        
        .. image:: https://travis-ci.org/moccu/django-centralauth.svg?branch=master
           :target: https://travis-ci.org/moccu/django-centralauth
        
        
        django-centralauth solves the problem of managing user access and permissions
        from multiple projects in one central place.
        
        
        Features
        --------
        
        * based on OAuth2 standard.
        * provider app to set up your own user-management application.
        * client app for delegating authentication and permissions management to provider.
        
        
        Requirements
        ------------
        
        django-centralauth supports Python 3 only and requires at least Django 1.11 and django-oauth-toolkit.
        
        
        Prepare for development
        -----------------------
        
        A Python 3.6 interpreter is required in addition to pipenv.
        
        .. code-block:: shell
        
            $ pipenv install --python 3.6 --dev
            $ pipenv shell
            $ pip install -e .
        
        
        Now you're ready to run the tests:
        
        .. code-block:: shell
        
            $ pipenv run py.test
        
        
        Resources
        ---------
        
        * `Documentation <https://django-centralauth.readthedocs.io>`_
        * `Bug Tracker <https://github.com/moccu/django-centralauth/issues>`_
        * `Code <https://github.com/moccu/django-centralauth/>`_
        
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: provider
