Metadata-Version: 1.0
Name: django-adworks
Version: 0.1
Summary: A simple Django application to manage ad banner design and approval processes.
Home-page: http://github.com/ozgurgunes/django-adworks/
Author: Ozgur Gunes
Author-email: o.gunes@gmail.com
License: UNKNOWN
Description: ========
        Adworks
        ========
        
        A simple Django application to manage ad banner design and approval processes.
        
        
        Requirements
        ============
        
        * Python 2.7+
        * Django 1.4+
        
        Installation
        ============
        
        Install using pip: ::
        
            $ pip install django-adworks
            
        Or install from source code: ::
        
            $ python setup.py install
        
        Usage
        =====
        
        Add ``adworks`` to your ``INSTALLED_APPS`` ::
        
            INSTALLED_APPS = (
                ...
                'adworks',
            )
            
        Include ``adworks`` in your ``urls.py`` ::
        
            url('adworks', include('adworks.urls')),
            
        Create necessary database tables ::
        
            $ python manage.py syncdb
            
        or ::
        
            $ python manage.py migrate adworks
        
        
            
Keywords: django,ad,banner,demo
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
