Metadata-Version: 2.4
Name: laypatel13-expense-tracker
Version: 0.1.3
Summary: A colorful CLI expense tracker
Author-email: Lay Patel <lay.patel.1313@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/laypatel13/expense-tracker
Keywords: cli,expense,tracker,finance
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: colorama==0.4.6
Requires-Dist: tabulate>=0.9.0

# 💰 Expense Tracker - CLI

A simple command-line Expense Tracker built using Python.
This project helps you record, view, and summarize your daily expenses with a colorful and neatly formatted tabular interface.

---

## ✨ Features

- Add expenses with amount, category, and date
- View all recorded expenses in a tabular format
- Get category-wise summary and total spending
- Save data in a JSON file (`expenses.json`)
- Reset all expenses when needed
- Colorful CLI output for better readability

---

## 📦 Install via pip

```bash
pip install laypatel13-expense-tracker
```

Then run it from anywhere in your terminal:

```bash
expense-tracker
```

---

## 🛠️ Install from source

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

Then run:

```bash
expense-tracker
```

---

## 📂 Project Structure

```text
expense-tracker/
├── expense_tracker/
│   ├── __init__.py
│   └── main.py
├── pyproject.toml
├── requirements.txt
└── README.md
```

---

## 🧰 Built With

- Used [Colorama](https://pypi.org/project/colorama/) for colored terminal output.
- Used [Tabulate](https://pypi.org/project/tabulate/) for formatted table display.
