Metadata-Version: 1.1
Name: pitble
Version: 0.0.2
Summary: Django microblog
Home-page: https://github.com/openwebinars-django/pitble/
Author: Pablo Martin, Raul Sanchez, Alberto Vara
Author-email: goinnn@gmail.com
License: LGPL 3
Description: .. contents::
        
        ======
        Pitble
        ======
        
        Information
        ===========
        
        .. image:: https://travis-ci.org/openwebinars-django/pitble.svg
            :target: https://travis-ci.org/openwebinars-django/pitble
        
        
        .. image:: https://coveralls.io/repos/openwebinars-django/pitble/badge.png
          :target: https://coveralls.io/r/openwebinars-django/pitble
        
        
        .. image:: https://badge.fury.io/py/pitble.png
            :target: https://badge.fury.io/py/pitble
        
        .. image:: https://pypip.in/d/pitble/badge.png
            :target: https://pypi.python.org/pypi/pitble
        
        
        Pitble is a python microblog
        
        
        Installation
        ============
        
        * In your settings:
        
        ::
        
            INSTALLED_APPS = (
                ...
                'pitble',
                'bootstrap3',
            )
        
        
            TEMPLATE_CONTEXT_PROCESSORS = (
                ...
                'pitble.context_processors.i18n',
        
            )
        
        
            MIDDLEWARE_CLASSES = (
                ...
                'django.middleware.locale.LocaleMiddleware',
                'pitble.middleware.LocaleMiddleware',
            )
        
            AUTH_USER_MODEL = 'pitble.User'
        
            LOGIN_URL = '/sign-in/'
            
        * In your urls:
        
        ::
            
            urlpatterns = patterns('',
                ...
                url(r'^', include('pitble.urls')),
            )
        
        
        Releases
        ========
        
        0.0.2 (2014-04-30)
        ------------------
        * Add tests
        
        
        0.0.1 (2014-04-29)
        ------------------
        * Initial version
        
Keywords: django,microblog,pitble
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
