Metadata-Version: 2.4
Name: logqpy
Version: 0.1.0
Summary: A simple logging utility for Python
Author: Aslan Kiran
License: MIT
Project-URL: Homepage, https://github.com/yourname/logqpy
Project-URL: Repository, https://github.com/yourname/logqpy
Keywords: logging,logger,utility
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# logqpy

A simple Python logging utility.

## Install
```bash
pip install logqpy

```

## Usage
from logqpy import log

log("Hello world")
log("Something failed", level="ERROR")
