Metadata-Version: 1.0
Name: django-player
Version: 0.1.0-alpha
Summary: Django-based Presentation Layer, focused on present contents extracted from CMSs
Home-page: UNKNOWN
Author: Manuel Saelices
Author-email: msaelices@yaco.es
License: UNKNOWN
Description: django-player
        =============
        
        django-player (Django Presentation Layer) is a presentation framework to
        develop websites, setting focus on UI layer. It's not a CMS, you only present
        data extracted from other CMS's, but controlling the layout and how present the
        information to the user.
        
        
        Installing
        ----------
        
        Install package from pypi::
        
        $ easy_install django-player
        
        Create a new website project::
        
        $ create-website.py mywebsite
        
        This create a ``mywebsite`` directory in your working directory, which is a
        usual Django project.
        
        You have to define the DATABASES settings in the project ``settings.py`` file.
        
        Create data models::
        
        $ python manage.py syncdb
        
        Run development server::
        
        $ python manage.py runserver
        
        And finally, open the browser and go to http://localhost:8000/
        
        
        Usage
        -----
        
        (( to complete ))
        
        0.1.0-alpha
        -----------
        
        Initial version
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
