Changeset 0c17d96 in sasview
- Timestamp:
- Jun 22, 2015 12:03:49 PM (9 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:
- 6a6d687
- Parents:
- 28812b8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/setup_exe.py
rc971c98 r0c17d96 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: … … 335 354 packages.append('periodictable.core') # not found automatically 336 355 #packages.append('IPython') 337 includes = ['site', 'lxml._elementpath', 'lxml.etree' ]356 includes = ['site', 'lxml._elementpath', 'lxml.etree', 'zmq.backend.cython'] 338 357 339 358 # Exclude packages that are not needed but are often found on build systems 340 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz' ]359 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg', 'sip', 'pytz', 'zmq.libzmq'] 341 360 342 361 … … 353 372 # accidental links to msys/cygwin binaries; shouldn't be needed 354 373 'cygwin1.dll', 374 'libzmq.pyd' 355 375 ] 356 376 … … 370 390 #initialize category stuff 371 391 #from sas.guiframe.CategoryInstaller import CategoryInstaller 372 #CategoryInstaller.check_install() 392 #CategoryInstaller.check_install(s) 393 394 sys.setrecursionlimit(10000) 373 395 374 396 setup(
Note: See TracChangeset
for help on using the changeset viewer.