Metadata-Version: 1.2
Name: django-idp-user
Version: 0.1.4
Summary: A Django app that handles the communication between the IDP and the products for the authorization of users.
Home-page: https://www.example.com/
Author: Mahmoud Al-Rawy, Euron Metaliaj, Klajdi Çaushi, Aleksandër Nasto, Andi Çuku
Author-email: hello@cardoai.com
License: MIT (X11)
Description: ===============
        Django IDP User
        ===============
        
        Quick start
        -----------
        
        1. Add "idp_user" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'idp_user',
            ]
        
        2. Add the settings of the app in settings.py like this::
        
            IDP_USER_APP = {
                "APP_IDENTIFIER": "str",
                "ROLES": "path.to.roles_choices",
                "USE_LOCAL_IDP_IN_DEV": True,
                "USER_UPDATES_TOPIC_NAME": f"{APP_ENV}_user_updates",
                "FAUST_APP_PATH": "backend.kafka_consumer.app"
            }
        
        3. Run ``python manage.py migrate`` to create the models.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.9
