A cookiecutter template for Python packages.
These instructions will help you generate a new python project/package from the cookiecutter template.
There are 2 ways to use this template:
- Just open a command line and run:
cookiecutter https://github.com/drkostas/starter.git
You have to have cookiecutter installed first of course. If you don't,
run: pip install cookiecutter~=1.7.2
first
- Clone this repository and follow the next steps
You need to have a machine with Python > 3.6 and any Bash based shell (e.g. zsh) installed.
$ python3.8 -V
Python 3.8.5
$ echo $SHELL
/usr/bin/zsh
All the installation steps are being handled by the Makefile.
Just execute the following command and fill in the project variables that will be requested:
$ make install
To delete the cookiecutter directory run:
$ make clean
Read the TODO to see the current task list.
- Cookie - A command-line utility that creates projects from cookiecutters (project templates)
This project is licensed under the Apache License - see the LICENSE file for details.
- Thanks to PurpleBooth for the README template