""" This will be part of guitools Since guitools is currently in a state of flux, we will merge those to module later """ import sys if len(sys.argv) == 1: sys.argv.append('install') # Then build and install the modules from distutils.core import setup, Extension setup( name="guicomm", version = "0.1", description = "Python module for SANS gui tools", author = "University of Tennessee", #author_email = "", url = "http://danse.chem.utk.edu", # Place this module under the sans package #ext_package = "sans", # Use the pure python modules package_dir = {"sans.guicomm":"."}, packages = ["sans.guicomm"] )