An open API service indexing awesome lists of open source software.

https://github.com/virresh/python-packaging

A short tutorial on creating python packages that can be invoked from command line
https://github.com/virresh/python-packaging

Last synced: about 2 months ago
JSON representation

A short tutorial on creating python packages that can be invoked from command line

Awesome Lists containing this project

README

          

# Python Package Tutorial : The BasicMath Package

This package will help you to install two modules and add command line for both
of the modules.

Usage:
Sample usage for adder
```bash
$ adder 1 2
3
```

Sample usage for multiplier
```bash
multiplier 2 3
```
## Installation

Install this cool package by
* From the git repository directly without cloning:
```
pip install git+https://github.com/virresh/python-packaging.git
```

* Clone this repository and use the good old pip
```
$ git clone https://github.com/virresh/python-packaging
$ cd python-packaging
$ pip install .
```

## Uninstalling this package

```
$ pip uninstall BasicMath
```