Metadata-Version: 1.1
Name: dp-tornado
Version: 0.9.2
Summary: MVC Web Application Framework with Tornado.
Home-page: http://github.com/why2pac/dp-tornado
Author: YoungYong Park
Author-email: oss@dp.farm
License: MIT
Description: 
        MVC Web Application Framework with Tornado, Python 2 and 3
        
        To install the package run:
        
            pip install dp-tornado
        
        
        Bootstrap Code
        -----
        
            # -*- coding: utf-8 -*-
            # __init__.py
        
        
            import os
        
            from dp_tornado import Bootstrap
        
            kwargs = {
                'initialize': True,  # If this value specified True, create default directories and files.
                'application_path': os.path.join(os.path.dirname(os.path.realpath(__file__))),
                'scheduler': [
                    ('* * * * *', 'scheduler.foo')
                ]
            }
        
            bootstrap = Bootstrap()
            bootstrap.run(**kwargs)
        
        
        Run
        -----
        
            $ pip install virtualenv  # if required.
            $ virtualenv ./venv
            $ . ./venv/bin/activate
            $ pip install dp-tornado
            $ python __init__.py
        
        
Keywords: MVC,Web Application Framework
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
