Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 488 Bytes

File metadata and controls

28 lines (18 loc) · 488 Bytes

Python Reference Project

This project serves as a starter template for building python based projects.

Setup

python3 -m venv venv

Activate the virtual environment:

Activating the environment ensures that any packages you install will be added only to this project.

  • On macOS/Linux: source venv/bin/activate
  • On Windows: venv\Scripts\activate
pip install -r requirements.txt

Testing

You run all the testcases with

pytest