Metadata-Version: 2.1
Name: measure_run_time
Version: 0.1.0
Summary: A Python decorator to measure the execution time of functions
Home-page: https://github.com/carlos-paezf/PyPI-Measure_Run_Time-Package
Author: Tu Nombre
Author-email: tu.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Measure Time Package

[![wakatime](https://wakatime.com/badge/user/8ef73281-6d0a-4758-af11-fd880ca3009c/project/240b245e-dc55-4db6-bf25-a24769c4ac26.svg?style=for-the-badge)](https://wakatime.com/badge/user/8ef73281-6d0a-4758-af11-fd880ca3009c/project/240b245e-dc55-4db6-bf25-a24769c4ac26)

A simple Python decorator to measure the execution time of functions.

## Installation

```bash
pip install measure_run_time
```

## Usage

```py
from measure_run_time import measure_run_time

@measure_run_time
def example_function():
    # Your code here
```
