Metadata-Version: 2.1
Name: alex_tech_logging_library
Version: 0.1.0
Summary: A custom logging library built on Python's standard logging module. It provides a simple way to set up a logger with file and console handlers.
Home-page: 
Author: Tapan Bhatnagar
Author-email: tapan@alexandriatechnology.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# My Logging Library

A custom logging library built on Python's standard logging module.

## Installation
pip install alex-tech-logging-library

## Usage

```python
from my_logging_library import get_logger

logger = get_logger('my_app', log_file='app.log')
logger.info('This is an info message')
logger.error('This is an error message')
```
