Changeset 1614

Show
Ignore:
Timestamp:
02/11/10 09:08:51 (6 months ago)
Author:
mturk
Message:

Moving to distribute from setuptools.

Location:
trunk
Files:
1 added
1 removed
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/install_script.sh

    r1605 r1614  
    311311 
    312312echo "Installing setuptools" 
    313 ( ${DEST_DIR}/bin/python2.6 ${YT_DIR}/ez_setup.py 2>&1 ) 1>> ${LOG_FILE} || do_exit 
     313( ${DEST_DIR}/bin/python2.6 ${YT_DIR}/distribute_setup.py 2>&1 ) 1>> ${LOG_FILE} || do_exit 
     314 
     315echo "Installing Pip." 
     316( ${DEST_DIR}/bin/easy_install-2.6 pip 2>&1 ) 1>> ${LOG_FILE} || do_exit 
    314317 
    315318do_setup_py numpy-1.3.0 ${NUMPY_ARGS} 
     
    339342then 
    340343    echo "Installing Mercurial." 
    341     ( ${DEST_DIR}/bin/easy_install-2.6 mercurial 2>&1 ) 1>> ${LOG_FILE} || do_exit 
     344    ( ${DEST_DIR}/bin/pip install -U mercurial 2>&1 ) 1>> ${LOG_FILE} || do_exit 
    342345fi 
    343346 
     
    345348then 
    346349    echo "Installing Traits" 
    347     ( ${DEST_DIR}/bin/easy_install-2.6 -U TraitsGUI TraitsBackendWX 2>&1 ) 1>> ${LOG_FILE} || do_exit 
     350    ( ${DEST_DIR}/bin/pip install -U TraitsGUI TraitsBackendWX 2>&1 ) 1>> ${LOG_FILE} || do_exit 
    348351fi 
    349352 
  • trunk/setup.py

    r1576 r1614  
    33import time 
    44import subprocess 
    5 import ez_setup 
    6 ez_setup.use_setuptools() 
     5import distribute_setup 
     6distribute_setup.use_setuptools() 
    77 
    88import setuptools 
     
    1111DATA_FILES = [] 
    1212PY2APP_OPTIONS = {'argv_emulation': True} 
    13 VERSION = "1.6dev" 
     13VERSION = "2.0dev" 
    1414 
    1515if os.path.exists('MANIFEST'): os.remove('MANIFEST')