Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.41 KB

README-BUILDING.md

File metadata and controls

55 lines (42 loc) · 1.41 KB

py-fortress README-BUILDING


Table of Contents

  • Document Overview
  • SECTION 1. Prerequisites
  • SECTION 2. Setup Python Runtime and Configure py-fortress Usage

Document Overview

  • Contains instructions to build py-fortress

SECTION 1. Prerequisites

Minimum hardware requirements:

  • 1 Core
  • 1 GB RAM

Minimum software requirements:


SECTION 2. Setup Python Runtime and Configure py-fortress Usage

  1. Clone py-fortress

    git clone https://github.com/shawnmckinney/py-fortress.git
    
  2. Change directory into root folder of project:

    cd py-fortress
    
  3. Build

python3 -m venv env
. env/bin/activate
python3 -m pip install --upgrade build
python3 -m build
...
successfully built py-fortress-x.x.x.tar.gz and py_fortress-x.x.x-py3-none-any.wh

Where x.x.x == the current version of py-fortress

  1. Install
pip install dist/py_fortress-x.x.x-py3-none-any.whl

Where x.x.x == the current version of py-fortress

End of # py-fortress README-BUILDING