Metadata-Version: 2.4
Name: wareflow-analysis
Version: 0.2.1
Summary: Warehouse data analysis CLI tool
Project-URL: Homepage, https://github.com/wareflowx/wareflow-analysis
Project-URL: Repository, https://github.com/wareflowx/wareflow-analysis
Project-URL: Issues, https://github.com/wareflowx/wareflow-analysis/issues
Author-email: Code with dave <davidddpereiraaa6@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: excel-to-sql>=0.3.0
Requires-Dist: openpyxl>=3.0
Requires-Dist: pandas>=2.0
Requires-Dist: pyyaml
Requires-Dist: typer>=0.21
Description-Content-Type: text/markdown

# Wareflow Analysis Project

Warehouse data analysis project generated by wareflow-analysis CLI.

## Quick Start

1. Place your Excel files in the `data/` directory:
   - produits.xlsx
   - mouvements.xlsx
   - commandes.xlsx

2. Import data:
   ```bash
   wareflow import
   ```

3. Run analyses:
   ```bash
   wareflow analyze
   ```

4. Generate reports:
   ```bash
   wareflow export
   ```

## Full Pipeline

Run everything at once:
```bash
wareflow run
```

## Project Structure

- `config.yaml` - Configuration for excel-to-sql
- `data/` - Place your Excel source files here
- `output/` - Generated reports will be saved here
- `scripts/` - Analysis and export scripts
- `warehouse.db` - SQLite database

## Commands

- `wareflow import` - Import Excel data to SQLite
- `wareflow analyze` - Run database analyses
- `wareflow export` - Generate Excel reports
- `wareflow run` - Run full pipeline
- `wareflow status` - Show database status
