Metadata-Version: 2.4
Name: wyflask
Version: 0.1.1
Summary: A production-grade Python web framework built on top of Flask.
Author: Developer
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask>=3.0.0
Requires-Dist: Werkzeug>=3.0.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: ruff>=0.3.0; extra == "dev"
Requires-Dist: mypy>=1.9.0; extra == "dev"
Dynamic: license-file

# WyFlask

WyFlask is a production-grade, reusable web framework built on top of Flask.
It provides a structured architecture, reusable components, conventions, and developer tooling to make building Flask applications faster and more maintainable, without hiding Flask's core functionality.

## Features
- Application Factory
- Configuration Management
- Blueprint/Module System
- Developer CLI

## Installation

```bash
pip install wyflask
```

## Quickstart

```bash
wyflask new myapp
cd myapp
wyflask run
```
