'''Created on 2 Jul 2015The main application object for hosting the pynemo ncml editor.Used for development purposes to display the ncml editor dialog.@author: Shirley Crompton, UK Science and Technology Facilities Council'''importsys
importlogging# Logging set to infologging.basicConfig(level=logging.INFO)defmain():""" Command line execution method which check the input arguments and passes on to method to open the ncml generator window"""app=QApplication(sys.argv)ex=ncml_generator.Ncml_generator(None)sys.exit(app.exec_())if__name__=='__main__':