Skip to content

Commit 0e9d307

Browse files
author
Mauricio Varea
committed
Adding support for non-insitu installations
1 parent 9d6406c commit 0e9d307

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
limitations under the License.
1414
"""
1515

16+
import os
17+
1618
try:
1719
from setuptools import setup
1820
except ImportError:
@@ -30,7 +32,9 @@
3032
to authenticate a user, retrieve data, and upload data/results from their own analysis to BaseSpace.""",
3133
author_email='',
3234
packages=['BaseSpacePy.api','BaseSpacePy.model','BaseSpacePy'],
33-
requires=['pycurl','dateutil']
35+
package_dir={'BaseSpacePy' : os.path.join(os.path.dirname(__file__),'BaseSpacePy')},
36+
requires=['pycurl','dateutil'],
37+
zip_safe=False,
3438
)
3539

3640

0 commit comments

Comments
 (0)