From aa4242ceadede7a8c5d40e646350ad898324fefd Mon Sep 17 00:00:00 2001
From: sshah <sujen.shah@jpl.nasa.gov>
Date: Thu, 15 Jun 2023 16:58:00 +0000
Subject: [PATCH] Add build-env.sh script and environment yaml

---
 build-env.sh    | 5 +++++
 environment.yml | 6 ++++++
 2 files changed, 11 insertions(+)
 create mode 100644 build-env.sh
 create mode 100644 environment.yml

diff --git a/build-env.sh b/build-env.sh
new file mode 100644
index 0000000..8d54192
--- /dev/null
+++ b/build-env.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+source activate base
+basedir=$( cd "$(dirname "$0")" ; pwd -P )
+conda install ${basedir}/environment.yml
diff --git a/environment.yml b/environment.yml
new file mode 100644
index 0000000..c913d93
--- /dev/null
+++ b/environment.yml
@@ -0,0 +1,6 @@
+name: base
+channels:
+  - conda-forge
+  - defaults
+dependencies:
+  - pandas
-- 
GitLab