Metadata-Version: 2.1
Name: snow_greeting
Version: 0.1.0
Summary: A package that prints a snowy greeting message.
Home-page: https://github.com/oracle1993/greetings_snow
Author: oracle1993
Author-email: dragonknight.work.1993@gmail.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

# snow_greeting

This is a simple Python package that prints a snowy greeting message.

## Installation

You can install this package using pip:

pip install snow_greeting

## Usage

To use the package, import it and call the function `print_hello_message`:

````python
from snow_greeting import print_hello_message

print_hello_message()

This will print: Hello, message from snow



### 5. **The `LICENSE` File**

For simplicity, hereâ€™s an example of an MIT License (you can replace it with a more appropriate license for your project):

```text
MIT License

Copyright (c) 2025 Your Name

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
...
````
