Metadata-Version: 2.4
Name: sajal-addtwo
Version: 0.1.0
Summary: A simple Python package to add two numbers
Author-email: SAJAL <sajalkumar801@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# addtwo

A tiny package that adds two numbers.

## Install
pip install addtwo

## Usage
from addtwo import add
print(add(2, 3))  # 5
