Metadata-Version: 1.1
Name: django-userapp
Version: 0.0.5
Summary: Django userapp integration
Home-page: https://github.com/imanhodjaev/django-userapp
Author: Sultan Imanhodjaev
Author-email: sultan.imanhodjaev@gmail.com
License: LGPL
Description: ### Django userapp integration
        
        This is a Django integration with Userapp.io
        
        To use this project your settings should contain
        
        ```py
        INSTALLED_APPS = [
            ...
            "django_userapp"
        ]
        
        AUTHENTICATION_BACKENDS = [
            "django_userapp.backends.UserappBackend",
            "django.contrib.auth.backends.ModelBackend"
        ]
        
        USERAPP_ID = "YOUR_USERAPP_ID"
        USERAPP_USE_FEATURES = True
        
        # if USERAPP_USE_FEATURES = True then 
        # checks will happen againts USERAPP_FEATURE.value=true (enabled/disabled)
        USERAPP_FEATURES = ["USERAPP_FEATURE"]
        
        # Will be taken when we have not set user email in Userapp
        # default untitled@email.com
        USERAPP_DEFAULT_EMAIL = "default@email.com"
        ```
        
        ### Note
        At Userapp.io you must set first name, last name, email fields for each user.
        Emails should be unique and do not intersect with already existing non-userapp emails.
        
        ### Django version
        Django>=1.7
        
        ### Links
        See <http://userapp.io> for full api documentation of Userapp.
        
        ### TODO
        
        1. Add more tests,
        2. Add more readme,
        3. Bring more Userapp features,
        4. Sync Userapp permissions and features
         
        
        
Keywords: django,userapp,django-userapp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP :: Session
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
