Changes in / [6a6d687:038ccfe6] in sasview


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/setup_exe.py

    r0c17d96 rc971c98  
    231231images_dir = os.path.join(path, "images") 
    232232test_dir = os.path.join(path, "test") 
    233 test_1d_dir = os.path.join(path, "test\\1d_data") 
    234 test_2d_dir = os.path.join(path, "test\\2d_data") 
    235 test_save_dir = os.path.join(path, "test\\save_states") 
    236 test_upcoming_dir = os.path.join(path, "test\\upcoming_formats") 
    237233 
    238234matplotlibdatadir = matplotlib.get_data_path() 
     
    294290 
    295291# Copying the sample data user data 
    296 for f in findall(test_1d_dir): 
     292for f in findall(test_dir): 
    297293    if not ".svn" in f: 
    298         data_files.append(("test\\1d_data", [f])) 
    299  
    300 # Copying the sample data user data 
    301 for f in findall(test_2d_dir): 
    302     if not ".svn" in f: 
    303         data_files.append(("test\\2d_data", [f])) 
    304  
    305 # Copying the sample data user data 
    306 for f in findall(test_save_dir): 
    307     if not ".svn" in f: 
    308         data_files.append(("test\\save_states", [f])) 
    309  
    310 # Copying the sample data user data 
    311 for f in findall(test_upcoming_dir): 
    312     if not ".svn" in f: 
    313         data_files.append(("test\\upcoming_formats", [f])) 
    314  
     294        data_files.append(("test", [f])) 
    315295 
    316296# See if the documentation has been built, and if so include it. 
     
    330310    # install the MSVC 9 runtime dll's into the application folder 
    331311    data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86)) 
     312 
    332313 
    333314# NOTE: 
     
    354335packages.append('periodictable.core') # not found automatically 
    355336#packages.append('IPython') 
    356 includes = ['site', 'lxml._elementpath', 'lxml.etree', 'zmq.backend.cython'] 
     337includes = ['site', 'lxml._elementpath', 'lxml.etree'] 
    357338 
    358339# Exclude packages that are not needed but are often found on build systems 
    359 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz', 'zmq.libzmq'] 
     340excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz'] 
    360341 
    361342 
     
    372353    # accidental links to msys/cygwin binaries; shouldn't be needed 
    373354    'cygwin1.dll', 
    374     'libzmq.pyd' 
    375355    ] 
    376356 
     
    390370#initialize category stuff 
    391371#from sas.guiframe.CategoryInstaller import CategoryInstaller 
    392 #CategoryInstaller.check_install(s) 
    393  
    394 sys.setrecursionlimit(10000) 
     372#CategoryInstaller.check_install() 
    395373 
    396374setup( 
Note: See TracChangeset for help on using the changeset viewer.