Metadata-Version: 2.3
Name: invoice_group_excel
Version: 0.1.4
Summary: Tool that groups excell rows with specified conditions
License: Free
Author: Jarosław Jezierczak
Author-email: jezierczak@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
Description-Content-Type: text/markdown

invoice_group_excel
====================

A Python library for automatic Excel cost aggregation, filtering, grouping and multi‑sheet report generation.

Features:
- Auto-detects numeric columns and sums them
- Works with arbitrary column names
- Generates multiple sheets based on filters
- Supports grouping and sorting
- Configurable formatting

Installation:
```
pip install invoice_group_excel
```

Usage:
```
from invoice_group_excel import InvoiceAggregator, CFG
ag = InvoiceAggregator(CFG.input_data_file, ['Sheet1'])
ag.save_and_style(CFG.output_data_file)
```

