UNPKG

quickprojects

Version:

QuickProjects makes it easy to create templates for programming projects without having to use an IDE.

16 lines (11 loc) 200 B
##################### # Variables ##################### python_version=python3 main='src/app.py' ##################### # Targets ##################### default: run run: ${python_version} ${main}