Metadata-Version: 2.4
Name: flask-flare
Version: 0.1.1
Summary: Give a little flare to your Flask application with componet-style Jinja Tags
License-File: LICENSE
Author: Drew Butcher
Author-email: drewlbutcher@gmail.com
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: flask (>=3.0)
Requires-Dist: jinja2 (>=3.1)
Description-Content-Type: text/markdown

# Flask Flare 🎨

Give a little flare to your Flask application.

Flask-Flare provides component-style Jinja tags.

## Installation

```bash
pip install flask-flare
```

## Setup
In your __init__.py file of your application
```python
from flask_flare import Flare

flare = Flare()

def create_app(config_name) -> Flask: # or something like this
    """Create a Flask application instance."""
    app = Flask(__name__)
    # initialize extensions
    flare.init_app(app)
    # ... more code
    return app
```

