Changeset c329f4d in sasview for setup.py


Ignore:
Timestamp:
Aug 20, 2012 6:54:46 PM (12 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:
a338547
Parents:
5401f2a
Message:

changed sansview name to sansview (gui only)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    r5a313a3 rc329f4d  
    11""" 
    2     Setup for SansView 
     2    Setup for SasView 
    33    #TODO: Add checks to see that all the dependencies are on the system 
    44""" 
     
    1919                                 "core","include") 
    2020    except: 
    21         msg = "\nNumpy is needed to build SansView. " 
     21        msg = "\nNumpy is needed to build SasView. " 
    2222        print msg, "Try easy_install numpy.\n  %s" % str(sys.exc_value) 
    2323        sys.exit(0) 
     
    4343                     'sum_Ap1_1_Ap2.pyc', 'sum_p1_p2.pyc',  
    4444                     'testmodel_2.pyc', 'testmodel.pyc', 'plugins.log'] 
    45 sans_dir = os.path.join(os.path.expanduser("~"),'.sansview') 
     45sans_dir = os.path.join(os.path.expanduser("~"),'.sasview') 
    4646if os.path.isdir(sans_dir): 
    47     f_path = os.path.join(sans_dir, "sansview.log") 
     47    f_path = os.path.join(sans_dir, "sasview.log") 
    4848    if os.path.isfile(f_path): 
    4949        os.remove(f_path) 
     
    323323                    ] ) 
    324324         
    325 # SansView 
     325# SasView 
    326326package_dir["sans.sansview"] = "sansview" 
    327327package_data['sans.sansview'] = ['images/*', 'media/*', 'test/*'] 
     
    341341 
    342342    
    343  # Set up SansView     
     343 # Set up SasView     
    344344setup( 
    345     name="sansview", 
     345    name="sasview", 
    346346    version = VERSION, 
    347     description = "SansView application", 
     347    description = "SasView application", 
    348348    author = "University of Tennessee", 
    349349    author_email = "sansdanse@gmail.com", 
    350350    url = "http://danse.chem.utk.edu", 
    351351    license = "PSF", 
    352     keywords = "small-angle neutron scattering analysis", 
     352    keywords = "small-angle x-ray and neutron scattering analysis", 
    353353    download_url = "https://sourceforge.net/projects/sansviewproject/files/", 
    354354    package_dir = package_dir, 
Note: See TracChangeset for help on using the changeset viewer.