Metadata-Version: 2.1
Name: justinascalculator
Version: 0.0.8
Summary: Simple calculator
Home-page: UNKNOWN
Author: Justinas Klevinskas
Author-email: justinas@klevinskas.lt
License: UNKNOWN
Description: This is a simple calculator, that can do addition, subtraction, multiplication, division, raising by power and taking the (n) root of a number.
        
        Introduction:
            This package was built as a Turing College task for 1.5 subproject. Each action updates the number in calculator's memory and returns result.
        
        Usage:
            Functions:
                memory: returns or sets a number in memory
                reset_memory: resets memory to 0
                addition(float or int): adds number to memory
                subtraction(float or int): subtract number from memory
                multiplication(float or int): multiply number from memory
                division(float or int): divides number form memory
                nth_root(float or int): takes the (n)'th root from memory
                power(float or int): raises number by power
                
        Installation:
            Install the package from pypi using: pip install justinascalculator
        
        Initialise:
            from calculator.Calculator import Calculator
            calculator = Calculator()
        
        License:
            This project is licensed under https://opensource.org/licenses/MIT
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
