Metadata-Version: 2.1
Name: maintenance_utils
Version: 0.1.1
Summary: Utility functions for vehicle service scheduling
Author: Ajay Panwar
Author-email: ajay.gemini90@gmail.com
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
License-File: LICENSE

# maintenance_utils
A simple Python package with utility functions for vehicle service scheduling.

## Installation
To install the package via pip:
`pip install maintenance_utils`

## Usage

You can import the utility functions from the package like this:

```python
from maintenance_utils import calculate_next_service_date, sort_records_by_date

# Example usage:
next_service_date = calculate_next_service_date(last_service_date="2023-01-01")
sorted_records = sort_records_by_date(records_list)
