Metadata-Version: 2.4
Name: my_first_package_nazmul
Version: 0.0.2
Summary: A small example package
Home-page: https://github.com/Nazmul0005/my-first-package.git
Author: Nazmul Islam
Author-email: nazmulislam45213@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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

**My First Pakage**

A simple python package for learning purposes

**Installation**

```python
pip install my_first_package_nazmul
```

Usage

```
from my_first_package_nazmul import greet, add_numbers

print(greet("Nazmul"))

print(add_numbers(2,2))


```
