Metadata-Version: 1.1
Name: Shake
Version: 1.6.4
Summary: A lightweight web framework based on Werkzeug and Jinja2 as an alternative to Flask
Home-page: http://github.com/lucuma/shake
Author: Juan-Pablo Scaletti
Author-email: juanpablo@lucumalabs.com
License: MIT license (http://www.opensource.org/licenses/mit-license.php)
Description: --------------------------
            Shake
            --------------------------
        
            A web framework mixed from the best ingredients.
            It can be minimal like this:
        
                from shake import Shake
        
                app = Shake(__file__)
        
                app.route('/', hello)
                def hello(request):
                    return 'Hello World!'
        
                if __name__ == "__main__":
                    app.run()
        
            Or a full featured (yet configurable if you need it) framework.
        
            ---------------------------------------
            © 2010 by [Lúcuma] (http://lucumalabs.com).
            See `AUTHORS.md` for more details.
            License: [MIT License] (http://www.opensource.org/licenses/mit-license.php).
        
            Portions of code and/or inspiration taken from:
            * Werkzeug <werkzeug.pocoo.org> Copyright 2010, the Werkzeug Team.
            * Flask <flask.pocoo.org> Copyright 2010, Armin Ronacher.
            Used under the modified BSD license. See LEGAL.md for more details
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
