Metadata-Version: 1.1
Name: fleaker
Version: 0.3.2
Summary: Tools and extensions to make Flask development easier.
Home-page: https://github.com/croscon/fleaker
Author: Croscon Consulting
Author-email: hayden.chudy@croscon.com
License: BSD
Download-URL: https://github.com/croscon/fleaker/archive/v0.3.1.tar.gz
Description: 
        Fleaker
        -------
        
        Fleaker is a framework built on top of Flask that aims to make using Flask
        easier and more productive, while promoting best practices.
        
        Yes, it's BSD licensed.
        
        Easier to Setup
        ```````````````
        
        Save in an app.py:
        
        .. code:: python
        
            import os
        
            from fleaker import App
        
            def create_app():
                app = App.create_app(__name__)
                settings_dict = {'DEBUG': True}
                app.configure('.settings', os.env, settings_dict)
        
                return app
        
            if __name__ == '__main__':
                create_app().run()
        
        Just as Easy to Use
        ```````````````````
        
        Run it:
        
        .. code:: bash
        
            $ pip install fleaker
            $ python app.py
             * Running on http://localhost:5000/
        
Keywords: flask,web development,flask extension
Platform: any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
