demo-pip-math

Demo your first Pip package.


Keywords
pip-demo, math
License
MIT
Install
pip install demo-pip-math==0.2.0

Documentation

Your first Pip package in Python

This repository is the companion post to my blog "Your first Pip package in Python"

Usage

from demo_pip_math.math import add, subtract, multiply


def test_add():
    assert add(3, 2) == 5


def test_subtract():
    assert subtract(3, 2) == 1


def test_multiply():
    assert multiply(3, 2) == 6