Metadata-Version: 2.2
Name: TestPipInstallProgram
Version: 0.0.2
Summary: Simple calculater
Home-page: https://github.com/OliverJansson/TestPipInstallProgram
Author: Oliver Jansson
Author-email: billy27000@gmail.com
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE


# Test Pip Install Program
    This is a test program for learning to cerate and assemble a pip installable work library

# Content
    The libiray has 4 functions in the simple_calc: addition, subtraction, multiplication and division. 

# Instructions 
    1. Install:
        Pip install TestPipInstallprogram

    2. Use functions:
        In python:
            from TestPipInstallProgram import simple_calc

        Four functions:
            -------
            addition(a,b): adds a and b together.
            --------

            -------
            subtraction(a,b): subtracts b from a.
            --------

            -------
            multiplication(a,b): multiply a and b togehter.
            --------

            -------
            division(a,b): divides a by b.
            --------





