Metadata-Version: 2.4
Name: simple-calc-pkg
Version: 0.1.0
Summary: A sample calculator package with add/subtract/multiply/divide.
Author-email: Ch Srinivasa Rao <airobohub@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# simple-calc-pkg

Tiny calculator package with add, subtract, multiply and divide.

Usage:

```python
from simple_calc import add, divide
print(add(2,3))   # 5
print(divide(10,2)) # 5.0
