- Timestamp:
- Mar 11, 2012 4:20:23 PM (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:
- bd26a85
- Parents:
- 0528cd6
- Location:
- sansview
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/sansview.py
r6bdf6ae r270cc72e 24 24 os.mkdir(mplconfigdir) 25 25 os.environ['MPLCONFIGDIR'] = mplconfigdir 26 26 sys.setdefaultencoding("iso-8859-1") 27 27 from sans.guiframe import gui_manager 28 28 from sans.guiframe.gui_style import GUIFRAME -
sansview/setup_exe.py
rcc37badc r270cc72e 56 56 "win32com.internet", "win32com.mapi", "win32com.propsys", 57 57 "win32com.taskscheduler"]: 58 __import__(extra) 59 m = sys.modules[extra] 60 for p in m.__path__[1:]: 61 modulefinder.AddPackagePath(extra, p) 58 59 __import__(extra) 60 m = sys.modules[extra] 61 for p in m.__path__[1:]: 62 modulefinder.AddPackagePath(extra, p) 63 62 64 except ImportError: 63 65 # no build path setup, no worries. … … 284 286 # packages 285 287 # 286 packages = ['matplotlib', 'scipy', 'pytz', 'encodings', 'comtypes', 'win32com' ]288 packages = ['matplotlib', 'scipy', 'pytz', 'encodings', 'comtypes', 'win32com', 'encodings'] 287 289 includes = ['site'] 288 290 -
sansview/setup_mac.py
rdac6869 r270cc72e 105 105 106 106 OPTIONS = {'argv_emulation': True, 107 'packages': ['lxml','numpy', 'scipy', 'pytz', 107 'packages': ['lxml','numpy', 'scipy', 'pytz', 'encodings', 108 108 'encodings','matplotlib', 'periodictable'], 109 109 'iconfile': ICON,
Note: See TracChangeset
for help on using the changeset viewer.