""" Installation script for SANS models - To compile and install: python setup.py install - To create distribution: python setup.py bdist_wininst """ import os #TODO: this should be part of realSpaceModeling from distutils.core import setup setup( name="sansrealspace", version = "0.1", description = "Python module for SANS scattering models", url = "http://danse.us/trac/sans", # Use the pure python modules package_dir = {"sans":os.path.join("src", "sans"), "sans.realspace":os.path.join("src", "sans", "realspace")}, packages = ["sans.realspace"] )