Skip to content

johanalmquist/python-projects-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Base setup for python projeckt

Base setup for a python project for vscode It's tested on a Ubuntu 20.04 computer with python3 and pip3 installed

This repo includes

requirements.txt

black==21.11b1
flake8==4.0.1

.vscode/

  • Settnings to set black to formater and flake8 to linter

venv/

  • A python virtual environment

How to use

  • Create a new folder (linux)
mkdir myfolder
  • Start a local git repository
  • Create a new folder (linux)
git init
  • Clone into your new folder
git clone https://github.com/johanalmquist/python-projects-template.git
  • Create a virtual environment (for linux)
python3 -m venv .venv
  • Activate virtual environment
source .venv/bin/activate
  • Install pip packages
pip3 install -r requirements.txt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published