Metadata-Version: 2.3
Name: somanath-python-library
Version: 0.1.0
Summary: A simple Python library with addition, subtraction, and greeting functions.
License: MIT
Author: somanath
Author-email: shindesomanath111@gamil.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# My Python Library

My Python Library is a simple Python package that provides a greeting function. This library is designed to demonstrate how to create and structure a Python package for distribution.

## Installation

You can install the library using pip. Run the following command in your terminal:

```
pip install my-python-library
```

## Usage

After installation, you can use the library in your Python scripts as follows:

```python
from my_python_library import greet

print(greet("World"))  # Output: Hello, World!
```

## Contributing

If you would like to contribute to this project, please fork the repository and submit a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
