This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Borrowed from: https://github.com/glue-viz/glue/blob/master/setup.py | |
# Copyright (c) 2013, Glue developers | |
import os | |
import subprocess | |
import sys | |
from glob import glob | |
from setuptools import Command |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Symlinks PySide from global installation into virtualenv site-packages | |
platform='unknown' | |
unamestr=$(uname) | |
if [[ "$unamestr" == 'Linux' ]]; then | |
platform='linux' | |
elif [[ "$unamestr" == 'Darwin' ]]; then | |
platform='darwin' | |
fi |
NewerOlder