Metadata-Version: 2.4
Name: laypatel13-library-manager
Version: 0.1.0
Summary: A colorful CLI library manager for tracking books and reading progress
Author-email: Lay Patel <lay.patel.1313@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/laypatel13/library-manager
Keywords: cli,library,books,reading,manager
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

# 📚 Library Manager - CLI

A simple command-line Library Manager built using Python.
This project helps you track your books, manage reading progress, and maintain your personal library with a colorful and neatly formatted interface.

---

## ✨ Features

- Add books with title, author, and publication year
- View all books in a formatted table
- View only unread books
- Mark books as read
- Save data in a JSON file (`books.json`)
- Reset entire library when needed
- Colorful CLI output for better readability

---

## 📦 Install via pip

```bash
pip install laypatel13-library-manager
```

Then run it from anywhere in your terminal:

```bash
library-manager
```

---

## 🛠️ Install from source

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

Then run:

```bash
library-manager
```

---

## 📂 Project Structure

```text
library-manager/
├── library_manager/
│   ├── __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.
