Metadata-Version: 2.4
Name: hello-world-pypi-2025
Version: 0.1.2
Summary: A hello with name for hello world in PyPi
Home-page: https://github.com/abbasi0abolfazl/hello_world_pypi.git
Author: Abolfazl Abbasi
Author-email: a.abbasi5775@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: home-page
Dynamic: requires-python

# Hello Package

A simple Python package that provides functions to greet users with nicely formatted names.

## Features

- Capitalizes the first letter of each part of a name.
- Prints a personalized greeting message.

## Installation

You can install the package using pip. Run the following command:

```bash
pip install hello-world-pypi-2025
```

## Usage

Here’s a quick example of how to use the `hello-world-pypi-2025`:

```python
from hello_package.hello import nice_name, say_hello

# Get a nicely formatted name
formatted_name = nice_name("   john doe   ")
print(formatted_name)  # Output: "John Doe"

# Print a greeting
say_hello(formatted_name)  # Output: "Hello *John Doe*"
```
