From 5b4ffb1bcd852f18832b4027f2429fcaf488efdb Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 2 Jul 2021 16:40:26 -0400
Subject: [PATCH] Add files to build/run in binder

---
 binder/apt.txt         |  2 ++
 binder/environment.yml | 11 +++++++++++
 binder/postBuild       |  3 +++
 3 files changed, 16 insertions(+)
 create mode 100644 binder/apt.txt
 create mode 100644 binder/environment.yml
 create mode 100644 binder/postBuild

diff --git a/binder/apt.txt b/binder/apt.txt
new file mode 100644
index 0000000..290d290
--- /dev/null
+++ b/binder/apt.txt
@@ -0,0 +1,2 @@
+cmake
+clang
\ No newline at end of file
diff --git a/binder/environment.yml b/binder/environment.yml
new file mode 100644
index 0000000..2bf3129
--- /dev/null
+++ b/binder/environment.yml
@@ -0,0 +1,11 @@
+# This .yml file is used to specify the conda environment that should be loaded into the binder instance
+name: pymcx
+dependencies:
+  - python=3.9
+  - matplotlib
+  - scipy
+  - numpy
+  - jupyter
+  - notebook
+  - sympy
+  - pip
\ No newline at end of file
diff --git a/binder/postBuild b/binder/postBuild
new file mode 100644
index 0000000..f79b391
--- /dev/null
+++ b/binder/postBuild
@@ -0,0 +1,3 @@
+#!/bin/bash
+set -ex
+CXX=clang++ pip install git+git://github.com/ianhbell/teqp.git
\ No newline at end of file
-- 
GitLab