Python Package template made using cookiecutter!
pip install cookiecutter
First, navigate to a folder where you want your package to live.
cookiecutter https://github.com/HenriquesLab/PythonPackageCookiecutter
Cookiecutter will ask you for information regarding the package you want to create.
After this step is complete a new folder will appear in your working directory.
First navigate to the newly created folder:
cd MyPackageFolder
pip install -e .
You now have a minimal working example of a Python Package.