Metadata-Version: 2.1
Name: basiccalculator-ByteVolx
Version: 0.0.1
Summary: this is my first module (basiccalculator). Made by ByteVolx
Home-page: https://github.com/pypa/sampleproject
Author: ByteVolx
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/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

# About basiccalculator

A basic calculator that can add, subtract, divide, and multiply numbers.
To use basiccalculator you can choose between these 4 functions.

# If you used from...

If you used from to import this package, you can just type in:
divide(number1, number2), multiply(number1, number), subtract(number1, number2), or add(number1, number2)

# If you used import...

If you used import to import this package, you can just type in:
basiccalculator.divide(number1, number2), basiccalculator, multiply(number1, number), basiccalculator.subtract(number1, number2), or basiccalculator.add(number1, number2)

