Metadata-Version: 2.5
Name: myexample_rahul
Version: 0.0.1
Summary: Package example
Project-URL: Homepage, https://github.com/Rahul-Poojary47/Python/tree/main/Package/Test
Project-URL: Issues, https://github.com/Rahul-Poojary47/Python/tree/main/Package/Test
Author-email: Rahul <rahulpoojary2003@gmail.com>
License-File: LICENSE.txt
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# Hello Package

A simple Python package that demonstrates how to create a class and use a method from another Python file.

## Installation

If the package is published on PyPI:

```bash
pip install hello-package
```

## Usage

Import the `Hello` class:

```python
from hello_package import Hello
```

Create an object and call the `greet()` method:

```python
hello = Hello()
hello.greet("Rahul")
```

Output:

```text
Hello Rahul
```

## Example

The package contains a simple `Hello` class:

```python
class Hello:
    def __init__(self):
        pass

    def greet(self, name):
        self.name = name
        print(f"Hello {self.name}")
```

## Project Structure

```text
hello-package/
├── README.md
├── pyproject.toml
└── src/
    └── hello_package/
        ├── __init__.py
        └── hello.py
```

## License

This project is licensed under the GNU General Public License v3.0 (GPL-3.0).

See the LICENSE file for the full license text.