Metadata-Version: 1.1
Name: django-feedly
Version: 0.5.9
Summary: A Django app to create list and grid-based feeds.
Home-page: http://www.efforia.com.br/opensource/
Author: William Oliveira de Lagos
Author-email: william@efforia.com.br
License: LGPLv3 License
Description: =====
        Feedly
        =====
        
        Feedly is a Django app to create list and grid-based feeds. The
        feeds created with this app can have social and e-commerce aspects.
        
        Quick start
        -----------
        
        1. Add "feedly" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'feedly',
            )
        
        2. Include the feedly URLconf in your project urls.py like this::
        
            url(r'^feedly/', include('feedly.urls')),
        
        3. Run `python manage.py syncdb` to create the feedly models.
        
        3. Run `python manage.py loaddata fixtures.json` to create the data on feed.
        
        5. Visit http://127.0.0.1:8000/ to view a sample with populated data
Platform: UNKNOWN
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
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
