Metadata-Version: 2.4
Name: simple-adder-senthilvel
Version: 0.1.0
Summary: A simple library to add two numbers
Author: Your Name
License: MIT
License-File: LICENSE
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Simple Adder

A simple Python library to add two numbers.

```python
from simple_adder import add
print(add(2, 3))  # 5
```
