Changes in / [6a6d687:038ccfe6] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
r0c17d96 rc971c98 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")237 233 238 234 matplotlibdatadir = matplotlib.get_data_path() … … 294 290 295 291 # Copying the sample data user data 296 for f in findall(test_ 1d_dir):292 for f in findall(test_dir): 297 293 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])) 315 295 316 296 # See if the documentation has been built, and if so include it. … … 330 310 # install the MSVC 9 runtime dll's into the application folder 331 311 data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86)) 312 332 313 333 314 # NOTE: … … 354 335 packages.append('periodictable.core') # not found automatically 355 336 #packages.append('IPython') 356 includes = ['site', 'lxml._elementpath', 'lxml.etree' , 'zmq.backend.cython']337 includes = ['site', 'lxml._elementpath', 'lxml.etree'] 357 338 358 339 # Exclude packages that are not needed but are often found on build systems 359 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz' , 'zmq.libzmq']340 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz'] 360 341 361 342 … … 372 353 # accidental links to msys/cygwin binaries; shouldn't be needed 373 354 'cygwin1.dll', 374 'libzmq.pyd'375 355 ] 376 356 … … 390 370 #initialize category stuff 391 371 #from sas.guiframe.CategoryInstaller import CategoryInstaller 392 #CategoryInstaller.check_install(s) 393 394 sys.setrecursionlimit(10000) 372 #CategoryInstaller.check_install() 395 373 396 374 setup(
Note: See TracChangeset
for help on using the changeset viewer.