Metadata-Version: 2.4
Name: developeralex-hello-team
Version: 0.1.0
Summary: A colorful Python package that greets teams with style using colorama
Home-page: https://github.com/DeveloperAlex/pypi_HelloTeam
Author: DeveloperAlex
License: MIT
Project-URL: Homepage, https://github.com/DeveloperAlex/pypi_HelloTeam
Project-URL: Repository, https://github.com/DeveloperAlex/pypi_HelloTeam
Project-URL: Bug Tracker, https://github.com/DeveloperAlex/pypi_HelloTeam/issues
Keywords: colorama,greeting,team,terminal,colors,cli,console
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama>=0.4.0
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Hello Team 🎨

A colorful Python package that greets teams with style using colorama!

## Installation

```bash
pip install hello-team
```

## Usage

### Basic Usage

```python
from hello_team import hello_team

# Greet with default green color
hello_team("Python")
# Output: 'Hello Python Team' (in green)

# Greet with default team name
hello_team()
# Output: 'Hello World Team' (in green)
```

### Using Colors

```python
# Greet with different colors
hello_team("DevOps", "blue")
hello_team("Security", "red")
hello_team("Data Science", "magenta")
hello_team("Frontend", "cyan")
```

### Using Styles

```python
# Greet with colors and styles
hello_team("Backend", "green", "bright")
hello_team("QA", "yellow", "dim")
hello_team("Mobile", "blue", "normal")
```

## Available Options

### Colors
- `blue` - Blue text
- `green` - Green text (default)
- `cyan` - Cyan text
- `yellow` - Yellow text
- `red` - Red text
- `magenta` - Magenta text
- `white` - White text
- `black` - Black text

### Styles
- `normal` - Regular text (default)
- `bright` - Bold/bright text
- `dim` - Dimmed text

## Features

- 🎨 Colorful terminal output with colorama
- 🖥️ Cross-platform support (Windows, macOS, Linux)
- ✨ Multiple color and style options
- 🔧 Simple and easy to use API
- 📦 Lightweight with minimal dependencies

## Development

To install in development mode:

```bash
pip install -e .
```

To build the package:

```bash
python -m build
```

## License

MIT
