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.
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
The package can by run from the command line with:
python -m my_project
or imported by another python module with:
import my_project
The numpy in the requirements.txt is there for demonstration purposes.