blob: 656ee4c9906d03f4f01072ddc7ceb49be3d3d4b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2006-2007 Nanorex, Inc. See LICENSE file for details.
__author__ = "Will"
import sys, os, Pyrex
def find_pyrexc():
if sys.platform == 'darwin':
x = os.path.dirname(Pyrex.__file__).split('/')
return '/'.join(x[:-4] + ['bin', 'pyrexc'])
elif sys.platform == 'linux2':
if os.path.exists('/usr/bin/pyrexc'):
return '/usr/bin/pyrexc'
if os.path.exists('/usr/local/bin/pyrexc'):
return '/usr/local/bin/pyrexc'
raise Exception('cannot find pyrexc')
else:
# windows
return 'python c:/Python' + sys.version[:3] + '/Scripts/pyrexc.py'
|