Metadata-Version: 2.4
Name: simple-colortext
Version: 0.1.0
Summary: A simple package to print colored text in terminal
Home-page: https://github.com/yourusername/simple-colortext
Author: Your Name
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
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

# Simple ColorText

A simple Python package to print colored text in your terminal.

## Installation

```bash
pip install simple-colortext
```

## Usage

```python
from colortext import print_color

# Print text in different colors
print_color("Hello, World!", "red")
print_color("Success!", "green")
print_color("Warning!", "yellow")
print_color("Info", "blue")
```

## Available Colors

- red
- green
- yellow
- blue
- magenta
- cyan
- white

## License

MIT License
