Metadata-Version: 2.4
Name: laypatel13-sales-report
Version: 0.1.0
Summary: A colorful CLI tool to generate sales reports using Pandas
Author-email: Lay Patel <lay.patel.1313@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/laypatel13/sales-report
Keywords: cli,sales,report,pandas,csv
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pandas>=2.0.0
Requires-Dist: colorama==0.4.6
Requires-Dist: tabulate>=0.9.0

# 📈 Sales Report Generator - CLI
A simple command-line Sales Report Generator built using Python. This project helps you load, clean, and analyze sales data from CSV files with a colorful and neatly formatted tabular interface.

---

## ✨ Features

- Load and preview CSV sales data
- Clean data by removing missing values and duplicates
- Generate revenue reports by category and region
- Identify top selling products
- Export full sales report to a `.txt` file
- Save cleaned data to a new CSV file
- Colorful CLI output for better readability

---

## 📦 Install via pip

```bash
pip install laypatel13-sales-report
```

Then run it from anywhere in your terminal:

```bash
sales-report
```

---

## 🛠️ Install from source

```bash
git clone https://github.com/laypatel13/sales-report.git
cd sales-report
pip install -r requirements.txt
pip install -e .
```

Then run:

```bash
sales-report
```

---

## 📂 Project Structure

```text
sales-report/
├── sales_report/
│   ├── __init__.py
│   └── main.py
├── sales-data.csv
├── pyproject.toml
├── requirements.txt
└── README.md
```

---

## 🧰 Built With

- Used [Pandas](https://pandas.pydata.org/) for data loading, cleaning, and analysis.
- Used [Colorama](https://pypi.org/project/colorama/) for colored terminal output.
- Used [Tabulate](https://pypi.org/project/tabulate/) for formatted table display.
