source: branch/2frame/GSASII.py @ 2998

Last change on this file since 2998 was 2998, checked in by toby, 6 years ago

merge trunk into 2frame

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Date Author Revision URL Id
  • Property svn:mergeinfo set to
    /trunk/GSASII.pymergedeligible
File size: 753 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#GSASII
4########### SVN repository information ###################
5# $Date: 2017-08-11 19:15:36 +0000 (Fri, 11 Aug 2017) $
6# $Author: toby $
7# $Revision: 2998 $
8# $URL: branch/2frame/GSASII.py $
9# $Id: GSASII.py 2998 2017-08-11 19:15:36Z toby $
10########### SVN repository information ###################
11'''
12*GSAS-II GUI Script*
13=====================
14
15Script to start the GSAS-II graphical user interface. This script imports GSASIIpath,
16sets a few misc. values and then launches :func:`GSASIIdataGUI.GSASIImain`, which
17creates a wx.Application which in turns creates the GUI.
18'''
19
20import GSASIIpath
21
22__version__ = '1.0.0'
23
24if __name__ == '__main__':
25    GSASIIpath.SetBinaryPath()
26    GSASIIpath.SetVersionNumber("$Revision: 2998 $")
27    GSASIIpath.InvokeDebugOpts()
28    import GSASIIdataGUI as G2gd   
29    G2gd.GSASIImain() # start the GUI
Note: See TracBrowser for help on using the repository browser.