Metadata-Version: 2.4
Name: i_want_to_say_that
Version: 0.1.0
Summary: A simple package that prints a greeting message
Home-page: https://github.com/Sarvesh-Swami/pypi_testing.git
Author: Sarvesh Swami
Author-email: Sarvesh Swami <sarveshswami10701@gmail.com>
Project-URL: Homepage, https://github.com/Sarvesh-Swami/pypi_testing.git
Project-URL: Bug Tracker, https://github.com/Sarvesh-Swami/pypi_testing.git/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# My Greeting Package

A simple Python package that prints a greeting message to your terminal.

## Installation

You can install this package using pip:

```bash
pip install my-greeting-package
```

## Usage

After installation, you can use it in two ways:

### 1. As a Command-Line Tool

Simply run the `greet` command in your terminal:

```bash
greet
```

### 2. In Your Python Code

You can also import and use it in your Python scripts:

```python
from my_greeting_package import greet

greet()
```

## Output

Running the package will display:

```
==================================================
🎉 Hello from My Greeting Package! 🎉
==================================================
Thank you for installing my package!
This is a simple demo package published on PyPI.
==================================================
```

## Requirements

- Python 3.7 or higher

## License

This project is licensed under the MIT License - see the LICENSE file for details.

## Author

Your Name

## Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.
