mirror of
https://github.com/xxh/xxh
synced 2024-11-24 12:53:03 +00:00
9 lines
329 B
Text
9 lines
329 B
Text
|
import os, sys
|
||
|
$XXH_HOME = os.path.dirname(os.path.realpath(__file__))
|
||
|
$PIP_TARGET = os.path.join($XXH_HOME, 'pip')
|
||
|
$PYTHONPATH = $PIP_TARGET
|
||
|
$PATH = [ os.path.join($PYTHONHOME, 'bin'), $XXH_HOME ] + $PATH
|
||
|
sys.path.append($PIP_TARGET)
|
||
|
aliases['xxh'] = os.path.join($XXH_HOME, 'xonsh') + ' ' + os.path.join($XXH_HOME, 'xxh.xsh')
|
||
|
|