Metadata-Version: 2.1
Name: quickcal
Version: 0.0.1
Summary: A small package for calculation purpose
Home-page: https://github.com/daminiprakash-35/quickcal.git
Author: Damini Prakash
Author-email: daminiprakash35@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/daminiprakash-35/quickcal/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# QUICK CALCULATION

This library will help to calculate numbers quickly.

# How to install?
'''
pip install quickcal
'''

# initializing package
'''
from quickcal import QuickCal

num_1 = 16
num_2 = 8

cal = QuickCal(num_1, num_2)
'''

# for addition
'''
cal.addition()
'''

# for substraction
'''
cal.substraction()
'''

# for multiplication
'''
cal.multiplication()
'''

# for division
'''
cal.division()
'''


