Metadata-Version: 2.1
Name: InvManagement
Version: 0.4
Summary: A simple inventory management system
Author: Kyle Tiongson, Hans Neil Emnacin
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Inventory Management Library

This is a simple inventory management system written in Python, developed as a project for the final lab exam. The purpose of this project is to demonstrate the implementation of fundamental programming concepts and practices in inventory management.

This project was developed under the guidance of our professor, Prof. Fe Hablanida, as a part of our final lab exam.

## Features

- **addPart()**: Add a new part to the inventory.
- **searchPart()**: Search for a part in the inventory.
- **changePartDescription()**: Modify the description of an existing part.
- **printInventory()**: Print the entire inventory.
- **deletePart()**: Remove a part from the inventory.

## Installation

To install the Inventory Management Library, run:

```sh
pip install inventoryManagement
```
