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
- Host: GitHub
- URL: https://github.com/virresh/python-packaging
- Owner: virresh
- License: mit
- Created: 2018-05-22T17:50:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-22T21:46:18.000Z (about 8 years ago)
- Last Synced: 2025-01-19T08:28:01.984Z (over 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```