Metadata-Version: 2.1
Name: zerofl
Version: 0.1.7
Summary: A lightweight, production-ready micro web framework in Python.
Author: MD Imran
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Zero – A Lightweight Micro Web Framework 🚀

Zero is a Flask-like micro web framework written in pure Python with support for:
- Route parameters (e.g., /user/<id>)
- Async routes
- Static file serving
- Middleware hooks
- Easy deployment

## Installation

```
pip install -e .
```

## Usage

```
python run_server.py
```

Visit `http://localhost:8000/`
