Metadata-Version: 2.4
Name: matholib
Version: 0.1.0
Summary: A simple math library
Author-email: Krishna Tandon <tandonkrishna1208@gmail.com>
Project-URL: Homepage, https://github.com/sleepyowl1208/Matholib
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# matholib

MathoLib is a simple python library that performs mathematic operations easy way.

## Features

- Perform mathematics operations

## Usage

```python
from matholib import add

print(add([1, 2, 3]))  # Output: 6

# Creating virtual environment
# python3 -m venv path/to/venv
# source path/to/venv/bin/activate
# python3 -m pip install xyz
