Metadata-Version: 2.1
Name: jecalculator
Version: 0.3
Summary: This is a simple library that performs basic python arithmetic operations.
Home-page: https://github.com/jamalelkhdadi/je-cal
Author: JAMAL EL KHDADI
Author-email: jamalelkhdadi@gmail.com
License: MIT
Keywords: calculator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

This is a simple library that performs
basic python arithmetic operations.

## Installation
```
pip install jecalculator

```

## Usage:
A guide to using the add_numbers function is as follows

```
import jecalculator as je
add_num = je.add_numbers(3, 7) # where 3 and 7 are the number you want to add
print(add_num)

```
The functions in this library are:
1. add_numbers
2. subtract_numbers
3. multiply_numbers 
4. divide_numbers_float 
5. divide_numbers_floor
6. power_numbers
7. mode_numbers

## License
Copyright 2022 jamalelkhdadi

This repository is licensed under MIT license.
See LICENSE for details.


Change Log
==========

0.3 (06/07/2022)

