Metadata-Version: 2.1
Name: calculatepy
Version: 0.0.4
Summary: CalculatePy is the fundamental package for mathematical operations with Python
Author: Vijendra Kumar
Author-email: Vijendra Kumar <skvijay007@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# CalculatePy is the fundamental package for mathematical operations with Python.

### This package provides flexibility to the user to provide numbers is any format (string, int, float) whether as individual numbers are in an array.

## It provides:

- Addition
  - This function has flexibility in accepting numbers as 
    - individual argument like "add(1,2)" or 
    - in a list like "add([1,2])" or 
    - in a set like "add((1,2))" or "add({1,2})"
  - Numbers can be passed as a string ``add('1', '2')``
  - Any non number characters will be considered as ``0`` value without throwing an error
- Subtraction
  - This function has flexibility in accepting numbers as 
      - individual argument like "subtract(1,2)" or 
      - in a list like "subtract([1,2])" or 
      - in a set like "subtract((1,2))" or "subtract({1,2})"
  - Numbers can be passed as a string ``subtract('1', '2')``
  - Any non number characters will be considered as ``0`` value without throwing an error
- Multiplication
  - This function has flexibility in accepting numbers as 
      - individual argument like "multiply(1,2)" or 
      - in a list like "multiply([1,2])" or 
      - in a set like "multiply((1,2))" or "multiply({1,2})"
  - Numbers can be passed as a string ``multiply('1', '2')``
  - Any non number characters will be considered as ``1`` value without throwing an error

