Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 561 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 561 Bytes

set_up_stuff

Juste a few helper scripts and Makefiles to set up boilerplate python projects

The Makefile to init a project folder

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
  • have virtualenv installed on your machine:
    • python -m pip install virtualenv
  • then run:
make init_project PROJECT_NAME='project_name' PYTHON_VERSION='3.7'