Changeset ca6481c in sasview
- Timestamp:
- Dec 15, 2011 11:21:19 AM (13 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 8ca5890
- Parents:
- 96814e1
- Files:
-
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/sansview.py
r5e491e6 rca6481c 28 28 import logging 29 29 30 def run ():30 def run_old(): 31 31 """ 32 32 Run function for linux/OSX installations … … 35 35 os.system("cd %s;python sansview.py" % module_path) 36 36 37 def run(): 38 from multiprocessing import freeze_support 39 freeze_support() 40 sansview = SansView() 41 37 42 class SansViewApp(gui_manager.ViewApp): 38 43 """ -
sansview/setup_exe.py
r762984a rca6481c 177 177 path = os.getcwd() 178 178 179 plugins_dir = os.path.join(path, "plugins")179 #plugins_dir = os.path.join(path, "plugins") 180 180 media_dir = os.path.join(path, "media") 181 181 images_dir = os.path.join(path, "images") … … 236 236 237 237 # Copying the sample data user data 238 for f in findall(plugins_dir):239 if os.path.split(f)[0].count('.svn')==0:240 data_files.append(('plugins', [f]))238 #for f in findall(plugins_dir): 239 # if os.path.split(f)[0].count('.svn')==0: 240 # data_files.append(('plugins', [f])) 241 241 242 242 if py26MSdll != None: -
sansview/setup_mac.py
r6d52ff44 rca6481c 54 54 55 55 APP = ['sansview.py'] 56 DATA_FILES += ['images','test','plugins','media', 'custom_config.py', 'local_config.py'] 56 #DATA_FILES += ['images','test','plugins','media', 'custom_config.py', 'local_config.py'] 57 DATA_FILES += ['images','test','media', 'custom_config.py', 'local_config.py'] 57 58 # locate file extensions 58 59 def find_extension(): -
setup.py
r5d75d65a rca6481c 232 232 # SansView 233 233 package_dir["sans.sansview"] = "sansview" 234 package_data['sans.sansview'] = ['images/*', 'media/*', 'plugins/*', 'test/*'] 234 #package_data['sans.sansview'] = ['images/*', 'media/*', 'plugins/*', 'test/*'] 235 package_data['sans.sansview'] = ['images/*', 'media/*', 'test/*'] 235 236 packages.append("sans.sansview") 236 237
Note: See TracChangeset
for help on using the changeset viewer.