Metadata-Version: 2.1
Name: python-easy-math
Version: 1.0.0
Summary: Python library for basic addition and subtraction of two numbers
Home-page: https://github.com/svpernova09/python-easy-math
Author: Joe Ferguson
Author-email: joe@joeferguson.me
License: MIT
Download-URL: https://github.com/svpernova09/python-easy-math/tarball/1.0.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown

# python-easy-math

<table>
    <tr>
        <td>License</td>
        <td><img src='https://img.shields.io/pypi/l/python-easy-math.svg'></td>
        <td>Version</td>
        <td><img src='https://img.shields.io/pypi/v/python-easy-math.svg'></td>
    </tr>
    <tr>
        <td>Travis CI</td>
        <td><img src='https://travis-ci.org/svpernova09/python-easy-math.svg?branch=master'></td>
        <td>Coverage</td>
        <td><img src='https://codecov.io/gh/svpernova09/python-easy-math/branch/master/graph/badge.svg'></td>
    </tr>
    <tr>
        <td>Wheel</td>
        <td><img src='https://img.shields.io/pypi/wheel/python-easy-math.svg'></td>
        <td>Implementation</td>
        <td><img src='https://img.shields.io/pypi/implementation/python-easy-math.svg'></td>
    </tr>
    <tr>
        <td>Status</td>
        <td><img src='https://img.shields.io/pypi/status/python-easy-math.svg'></td>
        <td>Downloads</td>
        <td><img src='https://img.shields.io/pypi/dm/python-easy-math.svg'></td>
    </tr>
    <tr>
        <td>Supported versions</td>
        <td><img src='https://img.shields.io/pypi/pyversions/python-easy-math.svg'></td>
    </tr>
</table>

## A simple library to do math for you

Python Easy Math provides `addition.py` and `subtraction.py`. The Addition file provides the `add()` method which takes two parameters and returns the sum. The Subtraction file provides a single `subtract()` class that takes two parameters and will return the difference of the supplied parameters.



