From 53be923aeea9e32f19ad06b0b345726869faaf88 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sun, 17 May 2020 09:37:08 -0400 Subject: [PATCH] Add project requirements.txt file --- requirements.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..13e2308 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +# Run via "pip install -r requirements.txt" while in the base project directory. + + +# -- Python Libraries -- +# Numpy and related packages. +scipy +numpy +# Core Graph Library. +networkx +# Library to Visually Render Graphs. +matplotlib + + +# -- Pip Freeze: $ pip freeze -r requirements.txt -- -- GitLab