Skip to content

Commit

Permalink
restore sys.path hack to be able to use vsc.install
Browse files Browse the repository at this point in the history
  • Loading branch information
stdweird committed Oct 8, 2015
1 parent 5890c5f commit 7cd32b5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@
@author: Andy Georges (Ghent University)
@author: Kenneth Hoste (Ghent University)
"""

# vsc-base setup.py needs vsc.install, which is currently shipped as part of vsc-base
# vsc.install doesn't require vsc-base, so we could move it to it's own repo and only
# have this hack in the setup.py of vsc.install (and set it as build_requires)
# until then...
import os
import sys
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "lib"))


import vsc.install.shared_setup as shared_setup
from vsc.install.shared_setup import ag, kh, jt, sdw, URL_GH_HPCUGENT

Expand Down

0 comments on commit 7cd32b5

Please sign in to comment.