install pyximport on Cython installation
authorRobert Bradshaw <robertwb@math.washington.edu>
Sat, 16 Aug 2008 10:37:25 +0000 (03:37 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sat, 16 Aug 2008 10:37:25 +0000 (03:37 -0700)
setup.py

index 5a3c138aacdb9d251a5588297b04e3db927ec5d5..fa272c95cafbd3edd434dfb9d343bfffd62b5b98 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -101,3 +101,8 @@ setup(
   **setup_args
   )
 
+
+# Now install pyximport
+os.chdir('pyximport')
+os.spawnlp(os.P_WAIT, 'python', 'python', 'Setup.py', *sys.argv[1:])
+os.chdir('..')