Metadata-Version: 2.1
Name: sample-package-nivin
Version: 0.1.0
Summary: A sample Python package for PyPI publishing
License: MIT
Author: Your Name
Author-email: your.email@example.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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

# Sample Package

A sample Python package for demonstration purposes.

## Installation

```bash
pip install sample-package

from sample_package import greet

message = greet("Alice")
print(message)

from sample_package import greet

message = greet("Alice")
print(message)

