Metadata-Version: 2.4
Name: new-Mathify
Version: 0.1.1
Summary: A simple package for calculation and solving linear equation
Author: shreya pandey
Author-email: shreya pandey <shreyapandey1530@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file

# Mathify
A simple python package for basic arithmetic and linear equation solving

## Installation 
pip install Mathify

## usage

from Mathify.arithmetic import add,sub,multi,div ,power
print(add(2,3))
print(sub(2,3))
print(multi(2,3))
print(div(2,3))
print(power(2,3))

from Mathify.algebra import solve_linear

print(solve_linear(3,4))
