Metadata-Version: 2.4
Name: PremiumCalculator
Version: 0.1.2
Summary: A simple calculator package
Home-page: https://github.com/almuksid/PremiumCalculator
Author: Al Muksid
Author-email: Al Muksid <programming.me01@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/almuksid/PremiumCalculator
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

### This is my first development pypi project
    - featured 01- add
    - featured 02- Sub
    - featured 03- Mul
    - featured 04- dev

## Example
```python
from PremiumCalculator import add, sub, mul, dev

print(add(5, 3))  # 8
print(sub(9, 4))  # 5
print(mul(2, 6))  # 12
print(dev(10, 2)) # 5.0
