Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 698 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 698 Bytes

My Project

A simple project providing a useful base structure for python packages.

An article with a step by step explanation of why this repository was created can be found on my website.

Installation

To install this project's package run:

pip install /path/to/my_project

To install the package in editable mode, use:

pip install --editable /path/to/my_project

Usage

The package can by run from the command line with:

python -m my_project

or imported by another python module with:

import my_project

Notes

The numpy in the requirements.txt is there for demonstration purposes.