Juste a few helper scripts and Makefiles to set up boilerplate python projects
This makefile creates a virtualenv, installs some tools I usually use and sets up a gitignore and vscode settings...
- have
make
installed on your machine:- Linux:
sudo apt-get install build-essential
- MacOS:
brew install make
- Linux:
- have
virtualenv
installed on your machine:python -m pip install virtualenv
- then run:
make init_project PROJECT_NAME='project_name' PYTHON_VERSION='3.7'