Metadata-Version: 2.4
Name: python_lib_2
Version: 1.0.0
Summary: A simple image format converter using Pillow
Home-page: https://github.com/yourusername/image_converter
Author: Apoorva
Author-email: your.email@example.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
Requires-Dist: Pillow
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Image Converter

A simple Python script to convert images between formats using the Pillow library.

## Features
- Convert images to PNG, JPG, BMP, and WEBP formats.
- Supports batch conversion.
- Easy-to-use command-line tool.

## Installation

Ensure you have Python installed (>=3.6), then install the package:

sh
pip install .


## Usage

### As a Python Script

python
from image_converter import convert_format

convert_format("input/rose.jpg", "png")


### As a Command-Line Tool

After installation, you can use it from the terminal:

sh
convert-image input/rose.jpg png


## Dependencies
- Pillow

## License
MIT License

## Author
Your Name - [GitHub Profile](https://github.com/yourusername)
