Personal cookiecutter template for Python packages.
- Install git
- Install Python
- Install cookiecutter via
pip
pip install cookiecutter
- Create the python package template as a folder
cookiecutter gh:rrwen/cookiecutter-python
- You will be prompted to fill in user input for the template
- Change directory to the generated folder
cd <name>
- Create an empty Github repository through the Github interface with the same name as the package
name
- Initialize the Github repository by running
bin/init_github.sh
orbin/init_github.bat
- See Developer Notes for details on the files and folders generated, as well as hosting a documentation web page
In Linux/Mac OS:
cookiecutter gh:rrwen/cookiecutter-python
cd <name>
source bin/init_github.sh
In Windows:
cookiecutter gh:rrwen/cookiecutter-python
cd <name>
bin\init_github.bat
Note: Replace <name>
with the python package name that you gave during the user input prompt