Manage your Makefiles with python
pip install pymakefile
pymake init
pymake add '{command_name}' '{command}' '{description}'
Example of adding new command:
pymake add runlocal 'python manage.py runserver' 'Starts the development server'
make help
poetry install
poetry shell
python pymakefile.py init
python pymakefile.py add '{command_name}' '{command}' '{description}'
black .