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

# 🐾 Animal Shelter - CLI

A simple command-line Animal Shelter Manager built using Python.
This project helps you manage shelter animals, track adoption status, and view animals by type with a colorful and neatly formatted interface.

---

## ✨ Features

- Add animals (Dog, Cat, Parrot) with name, age, and breed
- View all animals in a formatted table
- Filter animals by type
- Mark animals as adopted by ID
- Save data in a JSON file (`animals.json`)
- Colorful CLI output for better readability

---

## 📦 Install via pip

```bash
pip install laypatel13-animal-shelter
```

Then run it from anywhere in your terminal:

```bash
animal-shelter
```

---

## 🛠️ Install from source

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

Then run:

```bash
animal-shelter
```

---

## 📂 Project Structure

```text
animal-shelter/
├── animal_shelter/
│   ├── __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.
