Skip to content

Commit

Permalink
Adding support for non-insitu installations
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauricio Varea committed Sep 23, 2015
1 parent 9d6406c commit 0e9d307
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
limitations under the License.
"""

import os

try:
from setuptools import setup
except ImportError:
Expand All @@ -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,
)


Expand Down

0 comments on commit 0e9d307

Please sign in to comment.