Metadata-Version: 1.1
Name: django-fs-leonid
Version: 0.1.0
Summary: The Django-related reusable app provides the ability to create and store in a database files such as robots.txt, sitemap.xml and so on.
Home-page: https://bitbucket.org/fogstream/django-fs-leonid
Author: Yuri Lya
Author-email: yuri.lya@fogstream.ru
License: The MIT License (MIT)
Description: Introduction
        ============
        
        django-fs-leonid is the Django-related reusable app provides the ability to create and store in a database files such as robots.txt, sitemap.xml and so on.
        
        
        Installation
        ============
        
        1. Install ``django-fs-leonid`` using ``pip``::
        
            $ pip install django-fs-leonid
        
        2. Add ``'leonid'`` to your ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                ...
                'leonid',
                ...
            )
        
        3. Update your ``urls.py``::
        
            url(r'^', include('leonid.urls')),
        
        4. Run ``syncdb`` or ``migrate``::
        
            $ ./manage.py syncdb
        
            or
        
            $ ./manage.py migrate
        
        
        Credits
        =======
        
        `Fogstream <http://fogstream.ru>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
