Metadata-Version: 2.0
Name: fleaker
Version: 0.2.0
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.2.0.tar.gz
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
Requires-Dist: Flask
Requires-Dist: Flask-Classful
Requires-Dist: Flask-Login
Requires-Dist: Flask-Marshmallow
Requires-Dist: arrow
Requires-Dist: arrow
Requires-Dist: blinker
Requires-Dist: marshmallow
Requires-Dist: marshmallow-jsonschema
Requires-Dist: pendulum

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/


