Metadata-Version: 2.1
Name: sidcalculator
Version: 1.0.0
Summary: A simple calculator for SID
Author: Shiddhartho Karmaker
Author-email: sid@daffodil.ac
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

Under construction ! Not ready for use yet!
Currently experimenting and planning!

Developed by Sid Karmaker (c) 2023

# Example of How To Use SID Calculator

Creating A Calculator
```python

def add_numbers(a,b):
    return a + b

def sub_numbers(a,b):
    return a - b

def mul_numbers(a,b):
    return a * b

def div_numbers(a,b):
    return a / b

USES:
from sidcalculator import calculator
calculator.add_numbers(7,8)
```
