Metadata-Version: 2.4
Name: remove-the-bg
Version: 1.0.1
Summary: A self-contained background removal tool with no external dependencies
Home-page: https://github.com/yourusername/remove-the-bg
Author: Your Name
Author-email: your.email@example.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Remove The BG

A self-contained Python package for removing backgrounds from images with no external dependencies.

## Features

- **Zero Dependencies**: Everything is bundled - just `pip install remove-the-bg` and you're ready to go
- **Simple CLI**: Just run `rem /path/to/your/images`
- **Batch Processing**: Processes entire folders of images
- **Multiple Formats**: Supports PNG, JPG, JPEG image formats
- **AI-Powered**: Uses advanced machine learning models for accurate background removal

## Installation

```bash
pip install remove-the-bg
```

## Usage

### Command Line

Remove backgrounds from all images in a folder:
```bash
rem /path/to/your/images
```

Remove background from a single image:
```bash
rem /path/to/image.jpg
```

### Python API

```python
from remove_the_bg import remove_background

# Remove background from a single image
remove_background('input.jpg', 'output.png')

# Process a folder
from remove_the_bg.cli import process_folder
process_folder('/path/to/images')
```

## How it Works

This package includes all necessary dependencies (rembg, Pillow) bundled within the package itself, so you don't need to worry about installing additional dependencies or dealing with version conflicts.

## License

MIT License - see LICENSE file for details.
