Metadata-Version: 2.4
Name: hw-logging
Version: 0.1.0
Summary: Small package to manage log setup for HW Animation Tech projects.
Project-URL: Repository, https://git.hwanimation.tech/hwanimationtech/dcc-tools/hw-logging
Author-email: Henrik Wilhelmsen <henrik@hwanimation.tech>
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# HW Logging

A small package for managing log setup across HW Animation Tech projects.

## Installation

With uv:

```bash
uv add hw-logging
```

Or with pip:

```bash
pip install hw-logging
```

## Usage

### Basic Setup

```python
from pathlib import Path
import hw_logging

log_file = Path.home() / ".my-app" / "app.log"
hw_logging.setup_logging(log_file=log_file, log_level="INFO")

# Now use standard logging
import logging
logger = logging.getLogger(__name__)
logger.info("Application started")
```
