Changeset 50f4401 in sasview for sansview


Ignore:
Timestamp:
Aug 20, 2011 4:38:16 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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:
29a90b0
Parents:
2e42019
Message:

included numpy and scipy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/setup_exe.py

    rf1044e9 r50f4401  
    1515 
    1616import os, sys 
    17  
     17if len(sys.argv) == 1: 
     18    sys.argv.append('py2exe') 
    1819# When using the SansView build script, we need to be able to pass 
    1920# an extra path to be added to the python path. The extra arguments 
     
    6667        self.__dict__.update(kw) 
    6768        # for the versioninfo resources 
    68         self.version = "1.9.1" 
     69        self.version = "1.9.2Dev" 
    6970        self.company_name = "U Tennessee" 
    70         self.copyright = "copyright 2009" 
     71        self.copyright = "copyright 2009 - 2011" 
    7172        self.name = "SansView" 
    7273         
     
    145146# 
    146147 
    147 packages = ['matplotlib', 'pytz','encodings'] 
     148packages = ['matplotlib', 'numpy', 'scipy', 'pytz', 'encodings'] 
    148149includes = [] 
    149150excludes = []  
Note: See TracChangeset for help on using the changeset viewer.