Metadata-Version: 1.1
Name: molo.usermetadata
Version: 1.0.2
Summary: User metadata to be used with Molo.
Home-page: http://github.com/praekelt/molo.usermetadata
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Molo User Metadata
        ==================
        
        .. image:: https://travis-ci.org/praekelt/molo.usermetadata.svg?branch=develop
            :target: https://travis-ci.org/praekelt/molo.usermetadata
            :alt: Continuous Integration
        
        .. image:: https://coveralls.io/repos/praekelt/molo.usermetadata/badge.png?branch=develop
            :target: https://coveralls.io/r/praekelt/molo.usermetadata?branch=develop
            :alt: Code Coverage
        
        Provides code to help with User metadata in a project using the Molo code base.
        
        .. Note:: This library does not provide a Django user model, it provides a
                  metadata model that can be attached to a user. Our experience is
                  that custom User models in Django add all sorts of unpleasantries
                  when using migrations.
        
        Installation::
        
           pip install molo.usermetadata
        
        
        In your app settings::
        
           INSTALLED_APPS = (
              'molo.usermetadata',
           )
        
           MIDDLEWARE = (
              'molo.usermetadata.middleware.PeronsaMiddleware'
           )
        
        In your app urls.py::
        
           urlpatterns += patterns('',
                url(r'^meta/', include('molo.usermetadata.urls', namespace='molo.usermetadata', app_name='molo.usermetadata')),
           )
        
        Note::
        
           In order for the personae to be activated, choose activate under wagtail settings > personae settings
        
Keywords: praekelt,mobi,web,django
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
