Metadata-Version: 1.1
Name: django-revuo
Version: 0.2.1
Summary: Simple CMS django app
Home-page: https://github.com/Lasanha/revuo
Author: Gabriel Marcondes
Author-email: gabrielgeraldo@gmail.com
License: BSD License
Description: =====
        Revuo
        =====
        
        Revuo is a simple CMS app for Django.
        
        News
        ----
        
        Version 0.2.1 -
        * test updates, passing with django 1.7
        
        Version 0.2 -
        * using summernote wysiwyg editor
        * removing Video items, because it easy to embed them on news or posts
        
        Version 0.1.1 -
        * styling pages
        * static handling
        
        Version 0.1 - 
        basic, first version
        
        Quick start
        -----------
        
        1. Add 'revuo' to your INSTALLED_APPS settings like this:
        
            INSTALLED_APPS = {
                ...
                'revuo',
            }
        
        2. Import and include revuo urls in your urls.py like this:
        
            from revuo.urls import urlpatterns as revuo_patterns
        
            ...
        
            url(r'', include(revuo_patterns)),
        
        3. Run 'python manage.py syncdb' to create revuo models
        
        4. Start the server
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
