Changes in / [7132e49:2d03814] in sasview


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/setup_exe.py

    ra1b8fee ra1b8fee  
    179179test_1d_dir = os.path.join(path, "test\\1d_data") 
    180180test_2d_dir = os.path.join(path, "test\\2d_data") 
     181test_sesans_dir = os.path.join(path, "test\\sesans_data") 
     182test_convertible_dir = os.path.join(path, "test\\convertible_data") 
    181183test_save_dir = os.path.join(path, "test\\save_states") 
    182 test_upcoming_dir = os.path.join(path, "test\\upcoming_formats") 
     184test_coord_dir = os.path.join(path, "test\\coordinate_data") 
     185test_image_dir = os.path.join(path, "test\\image_data") 
     186test_other_dir = os.path.join(path, "test\\other_files") 
    183187 
    184188matplotlibdatadir = matplotlib.get_data_path() 
     
    273277# Copying the images directory to the distribution directory. 
    274278for f in findall(images_dir): 
    275     if not ".svn" in f: 
    276         data_files.append(("images", [f])) 
     279    data_files.append(("images", [f])) 
    277280 
    278281# Copying the HTML help docs 
    279282for f in findall(media_dir): 
    280     if not ".svn" in f: 
    281         data_files.append(("media", [f])) 
    282  
    283 # Copying the sample data user data 
     283    data_files.append(("media", [f])) 
     284 
     285# Copying the sample user data 
    284286for f in findall(test_1d_dir): 
    285     if not ".svn" in f: 
    286         data_files.append(("test\\1d_data", [f])) 
    287  
    288 # Copying the sample data user data 
     287    data_files.append(("test\\1d_data", [f])) 
    289288for f in findall(test_2d_dir): 
    290     if not ".svn" in f: 
    291         data_files.append(("test\\2d_data", [f])) 
    292  
    293 # Copying the sample data user data 
     289    data_files.append(("test\\2d_data", [f])) 
    294290for f in findall(test_save_dir): 
    295     if not ".svn" in f: 
    296         data_files.append(("test\\save_states", [f])) 
    297  
    298 # Copying the sample data user data 
    299 for f in findall(test_upcoming_dir): 
    300     if not ".svn" in f: 
    301         data_files.append(("test\\upcoming_formats", [f])) 
     291    data_files.append(("test\\save_states", [f])) 
     292for f in findall(test_sesans_dir): 
     293    data_files.append(("test\\sesans_data", [f])) 
     294for f in findall(test_convertible_dir): 
     295    data_files.append(("test\\convertible_files", [f])) 
     296for f in findall(test_coord_dir): 
     297    data_files.append(("test\\coordinate_data", [f])) 
     298for f in findall(test_image_dir): 
     299    data_files.append(("test\\image_data", [f])) 
     300for f in findall(test_other_dir): 
     301    data_files.append(("test\\other_files", [f])) 
    302302 
    303303# Copying opencl include files 
Note: See TracChangeset for help on using the changeset viewer.