Minimal Python template with Makefile setup.
.
├── src
├── scripts
│ ├── dev.sh
│ ├── init.sh
│ ├── install.sh
│ ├── prod.sh
├── main.py
├── Makefile
├── requirements.txt
Note: The
python_modules/directory and any.envor.localfiles are ignored in version control as per the.gitignorefile.
Use make <script_name> to execute the corresponding script.
make initmake installmake devmake prod