Metadata-Version: 1.0
Name: django-rulez
Version: 0.1.1
Summary: Flexible per-object authorization backend for Django
Home-page: http://github.com/cglass/django-rulez
Author: Christopher Glass
Author-email: tribaal@gmail.com
License: BSD
Description: #############
        django-rulez
        #############
        
        django-rulez is a fork of django-rules, since some of the goals django-rules set themselves didn't match our current
        project goals.You can refer to their github project page for more information about this cool project: https://github.com/maraujop/django-rules
        Kudos for the good work guys!
        
        Generally, it is a per-object authorization backend, that stores the rules themselves as methods on model.
        
        Installation
        =============
        
        
        From source
        ------------
        
        To install django-rulez from source::
        
        	git clone https://github.com/cglass/django-rulez/ django-rulez
        	cd django-rulez
        	python setup.py install
        
        From Pypi
        ----------
        
        Coming soon!
        
        
        Configuration
        ==============
        
        * Add it to the list of `INSTALLED_APPS` in your `settings.py`
        * Add the django-rulez authorization backend to the list of `AUTHENTICATION_BACKENDS` in `settings.py`::
        
        	AUTHENTICATION_BACKENDS = {
        	    'django.contrib.auth.backends.ModelBackend', # Django's default auth backend
        	    'django_rules.backends.ObjectPermissionBackend',
        	}
        
        Rules
        ======
        
        
        
        Examples
        =========
        
        
        
Keywords: authorization,backends,django,rules,permissions,rulez
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
