Metadata-Version: 2.4
Name: debugger-decorator
Version: 0.1.3
Summary: A comprehensive Python function debugger with colors and caller detection
Author-email: Michail Panagiotis Bofos <mbofos@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/mbofos01/debugger-decorator
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Debuggers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama
Requires-Dist: pretty_errors
Dynamic: license-file

# Debugger Decorator

A simple Python decorator for debugging functions.

## Installation

```bash
pip install debugger-decorator
```

## Usage

```python
from debugger_decorator import show_information

@show_information()
def my_function(a, b):
    return a + b

my_function(1, 2)
```

This will print information about the function call, its arguments, return value, and execution time.
