From 0bb672a04f8dd107d540bda89b1ce03bc261ecf7 Mon Sep 17 00:00:00 2001 From: "Bennett, Jacob Daniel" Date: Fri, 12 Mar 2021 02:27:01 -0500 Subject: [PATCH] Add installation instructions to readme --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 7ebe7f3..a168600 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,21 @@ # webqueue2 API A Python based parser and RESTful API for ECN's webqueue. + +## Usage +### Install via pip: +``` +pip install git+https://github.itap.purdue.edu/ECN/webqueue2-api@#egg=webqueue2-api +``` +For example, to install version 0.9.1: +``` +pip install git+https://github.itap.purdue.edu/ECN/webqueue2-api@0.9.1#egg=webqueue2-api +``` + +### Install via requirements file: +``` +git+https://github.itap.purdue.edu/ECN/webqueue2-api@#egg=webqueue2-api +``` +For example, to install version 0.9.1: +``` +git+https://github.itap.purdue.edu/ECN/webqueue2-api@0.9.1#egg=webqueue2-api +```