Changes in / [f349f85:88daca8] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
rc971c98 r4cf8db9 231 231 images_dir = os.path.join(path, "images") 232 232 test_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") 233 237 234 238 matplotlibdatadir = matplotlib.get_data_path() … … 290 294 291 295 # Copying the sample data user data 292 for f in findall(test_dir): 293 if not ".svn" in f: 294 data_files.append(("test", [f])) 296 for f in findall(test_1d_dir): 297 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 295 315 296 316 # See if the documentation has been built, and if so include it. … … 310 330 # install the MSVC 9 runtime dll's into the application folder 311 331 data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86)) 312 313 332 314 333 # NOTE: … … 370 389 #initialize category stuff 371 390 #from sas.guiframe.CategoryInstaller import CategoryInstaller 372 #CategoryInstaller.check_install( )391 #CategoryInstaller.check_install(s) 373 392 374 393 setup(
Note: See TracChangeset
for help on using the changeset viewer.