Metadata-Version: 1.0
Name: Shake
Version: 1.5
Summary: A web framework mixed from the best ingredients
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 (Werkzeug, Jinja2 and maybe SQLAlchemy, Babel, etc.)
        
        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 needed) framework.
        
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: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
