Metadata-Version: 2.4
Name: pratham_proj
Version: 0.1.0
Summary: A simple utility package for learning PyPI publishing
Author-email: Your Name <you@example.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pratham_proj

A simple utility package for learning PyPI publishing.

## Installation

```bash
pip install pratham_proj

# pratham_proj
from pratham_proj import say_hello, add

print(say_hello("World"))
print(add(10, 20))

#TEST

---

## 🚀 After That – Build & Upload

```bash
python -m build
twine upload dist/*
