Metadata-Version: 1.0
Name: baseframe
Version: 0.2.14
Summary: Baseframe for HasGeek projects
Home-page: https://github.com/hasgeek/baseframe
Author: Kiran Jonnalagadda
Author-email: kiran@hasgeek.com
License: UNKNOWN
Description: Baseframe
        =========
        
        .. image:: https://secure.travis-ci.org/hasgeek/baseframe.png
           :alt: Build status
        
        Reusable styles and templates for HasGeek projects. Setup instructions::
        
          python setup.py install
        
        You'll need this boilerplate in your code to use it::
        
          from flask import Flask
          from flaskext.assets import Environment, Bundle
          from baseframe import baseframe, baseframe_js, baseframe_css
        
          app = Flask(__name__, instance_relative_config=True)
          app.register_blueprint(baseframe)
        
          assets = Environment(app)
          js = Bundle(baseframe_js)
          css = Bundle(baseframe_css)
          assets.register('js_all', js)
          assets.register('css_all', css)
        
          # Import models and views, and register routes here
        
        Baseframe is BSD-licensed, but is built on top of Twitter Bootstrap 2.0,
        which uses the Apache license.
        
Keywords: baseframe
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries
