Metadata-Version: 2.1
Name: pypro-framework
Version: 0.1.0
Summary: A Python framework with batteries included
Home-page: https://github.com/pypro/pypro
Author: PyPro Team
Author-email: aaroh.ahirrao@dpsnashik.in
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Jinja2>=3.0.0
Requires-Dist: MarkupSafe>=2.0.0
Requires-Dist: SQLAlchemy>=1.4.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0.0; extra == "dev"
Requires-Dist: pytest-cov>=2.12.0; extra == "dev"
Requires-Dist: black>=21.5b2; extra == "dev"
Requires-Dist: isort>=5.9.1; extra == "dev"

# PyPro - A Flask-like Web Framework with Batteries Included

PyPro is a Python web framework designed to be easy to use like Flask, but with more built-in features that web applications commonly need. It provides routing, templating, database integration, security features, and more right out of the box.

## Features

- **Simple API**: Flask-like decorator-based routing and request handling
- **Built-in Server**: WSGI-compliant for easy deployment
- **Templating**: Jinja2 integration for HTML rendering
- **Database**: ORM integration with SQLAlchemy support
- **Security**: Password hashing, token generation, CSRF protection
- **Sessions**: Built-in session management
- **Middleware**: Request/response processing pipeline
- **CLI Tool**: Command-line interface for running apps and more
- **Plugin System**: Extensibility through third-party plugins

## Installation

```bash
pip install pypro
