From 3e7cf73633e370a71f57993f96c2a7ee1ad29ae4 Mon Sep 17 00:00:00 2001
From: Gregory Ashton <gregory.ashton@ligo.org>
Date: Wed, 13 Jun 2018 12:11:42 +1000
Subject: [PATCH] Minor changes related to getting it pip installable

---
 MANIFEST.in |  1 +
 setup.py    | 16 ++++++++++++++--
 2 files changed, 15 insertions(+), 2 deletions(-)
 create mode 100644 MANIFEST.in

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 000000000..9561fb106
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include README.rst
diff --git a/setup.py b/setup.py
index 8e5c6b8ab..c6264b52a 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from distutils.core import setup
 import subprocess
 from os import path
 
-version = '0.1.4'
+version = '0.2'
 
 # Write a version file containing the git hash and info
 try:
@@ -40,5 +40,17 @@ setup(name='tupak',
       packages=['tupak', 'tupak.core', 'tupak.gw'],
       package_dir={'tupak': 'tupak'},
       package_data={'tupak.gw': ['prior_files/*', 'noise_curves/*.txt'],
-                    'tupak': [version_file]}
+                    'tupak': [version_file]},
+      install_requires=[
+          'future',
+          'dynesty',
+          'corner',
+          'numpy',
+          'matplotlib',
+          'deepdish',
+          'pandas',
+          'scipy',
+          'gwpy',
+          'lalsuite',
+          ]
       )
-- 
GitLab