Metadata-Version: 1.1
Name: rororo
Version: 0.1-alpha
Summary: Functional nano web-framework built on top of WebOb, routr and Jinja
Home-page: http://github.com/playpauseandstop/rororo
Author: Igor Davydenko
Author-email: playpauseandstop@gmail.com
License: BSD License
Description: ======
        rororo
        ======
        
        .. image:: https://secure.travis-ci.org/playpauseandstop/rororo.png
        
        Functional nano web-framework built on top of `WebOb <http://webob.org/>`_,
        `routr <http://routr.readthedocs.com/>`_ and `Jinja2
        <http://jinja.pocoo.org/>`_. Works on Python 2.6 and higher (Python 3
        supported as well).
        
        Requirements
        ============
        
        * `Python <http://www.python.org/>`_ 2.6 or higher
        * `WebOb`_ 1.2.3 or higher
        * `routr`_ 0.7.1 or higher
        * `Jinja2`_ 2.6 or higher
        
        License
        =======
        
        ``rororo`` library licensed under the terms of `BSD License
        <https://github.com/playpauseandstop/rororo/blob/LICENSE>`_.
        
        Installation
        ============
        
        Sometimes in future ``rororo`` will added to PyPI, but for now you can install
        it from master tarball, like::
        
            # pip install https://github.com/playpauseandstop/rororo/tarball/master#egg=rororo
        
        For what reason?
        ================
        
        Just to have little tool to fast creating WSGI applications. Little and easy
        tool if you know what I mean. Prove?
        
        ::
        
            In [1]: from rororo import GET, create_app
        
            In [2]: from rororo.manager import runserver
        
            In [3]: view = lambda: 'Hello, world!'
        
            In [4]: app = create_app(routes=(GET('/', view), ))
        
            In [5]: runserver(app, autoreload=False)
            Starting server at http://0.0.0.0:8000/
        
        More?
        =====
        
        Coming soon...
        
Keywords: nano web framework webob routr jinja
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: License :: OSI Approved :: BSD License
