Metadata-Version: 2.1
Name: calc_toolkit
Version: 0.1.0
Summary: Calc toolkit package for basic geometric calculations
Home-page: https://github.com/Pankaj01111/calc_tootkit
Author: Pankaj Verma
Author-email: pankajver@gmail.com
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

# Calc Toolkit

`calc_toolkit` is a simple Python package that provides basic functions for calculations, including add, substract, multiply and divide.

## Installation

You can install the package using pip:

```bash
pip install calc_toolkit


from calc_toolkit import (
    add,
    subtract,
    multiply,
    divide,
)

# add
print(add(5, 3))          # Output: 8

# subtract
print(subtract(5, 3))     # Output: 2

# multiply
print(multiply(4,4))      # Output: 16

# divide
print(divide(6,6))        # Output: 1
# calc_tootkit
