Metadata-Version: 1.1
Name: django-scim2
Version: 0.1.1
Summary: A partial implementation of the SCIM 2.0 provider specification for use with Django.
Home-page: https://github.com/15five/django-scim2
Author: Paul Logston
Author-email: paul@15five.com
License: MIT
Download-URL: https://github.com/15five/django-scim2/archive/master.zip
Description: Django SCIM
        ===========
        
        This is a partial provider-side implementation of the SCIM 2.0 [1]_
        specification for use in Django.
        
        Note that currently the only supported database is Postgres.
        
        
        Installation
        ------------
        
        Install with pip::
        
            $ pip install django-scim2
        
        Then add the ``django_scim`` app to ``INSTALLED_APPS`` in your Django's settings::
        
            INSTALLED_APPS = (
                ...
                'django_scim',
            )
        
        
        Add the necessary url patterns to your root urls.py file. Please note that the
        namespace is mandatory and must be named `scim`::
        
            urlpatterns = [
                ...
                url(r'^scim/v2/', include('django_scim.urls', namespace='scim')),
            ]
        
        Documentation
        -------------
        
        Coming soon.
        
        
        License
        -------
        
        This library is released under the terms of the **MIT license**. Full details in ``LICENSE.txt`` file.
        
        
        Extensibility
        -------------
        
        This library was forked and developed to be highly extensible. A number of
        adapters can be defined to control what different endpoints do to your resources.
        Please see the documentation for more details.
        
        Credits
        -------
        
        This project was forked from https://bitbucket.org/atlassian/django_scim
        
        
        .. [1] http://www.simplecloud.info/, https://tools.ietf.org/html/rfc7644
        
        
Keywords: django scim 2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
