From 0e9d30790ec58fcf673534aeb62d3645b063fd14 Mon Sep 17 00:00:00 2001 From: Mauricio Varea Date: Wed, 23 Sep 2015 10:27:36 +0100 Subject: [PATCH] Adding support for non-insitu installations --- src/setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/setup.py b/src/setup.py index fe4ce65..d98dca5 100755 --- a/src/setup.py +++ b/src/setup.py @@ -13,6 +13,8 @@ limitations under the License. """ +import os + try: from setuptools import setup except ImportError: @@ -30,7 +32,9 @@ to authenticate a user, retrieve data, and upload data/results from their own analysis to BaseSpace.""", author_email='', packages=['BaseSpacePy.api','BaseSpacePy.model','BaseSpacePy'], - requires=['pycurl','dateutil'] + package_dir={'BaseSpacePy' : os.path.join(os.path.dirname(__file__),'BaseSpacePy')}, + requires=['pycurl','dateutil'], + zip_safe=False, )