Metadata-Version: 2.1
Name: py-chan-calculator
Version: 0.0.2
Summary: This is a simple calculator package
Home-page: https://github.com/ChanduArepalli/py-chan-calculator
Author: Chandu Arepalli
Author-email: chandumanikumar4@gmail.com
License: BSD 2-clause
Description: # Py-Chan-Calculator
        This is a simple calculator package
        
        ### How to install the package
        ```shell
        pip install pychancalculator
        ```
        
        ### How to import the package
        ```pycon
        from pychancalculator.calculator import Calculator
        ```
        
        ### Code
        ```python
        # create an instance
        cal = Calculator()
        
        # For the Addition
        cal.add(2,3)
        # return 5 
        
        # For the Subtraction
        cal.dif(5,3)
        # return 2
        
        # For the division
        cal.div(6,3)
        # return 2 
        
        # For the multiplication
        cal.multi(8,2)
        # return 4 
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
