source: sasview/simulationview/setup.py @ b7b9c16

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since b7b9c16 was b7b9c16, checked in by Gervaise Alina <gervyh@…>, 13 years ago

add new perspective simulationview

  • Property mode set to 100644
File size: 936 bytes
Line 
1"""
2     Installation script for SANS gui tools
3"""
4import os
5# Then build and install the modules
6from distutils.core import setup
7setup(
8    name="simulationview",
9    version = "0.1.1",
10    description = "Python module for SANS SimView",
11    author = "University of Tennessee",
12    #author_email = "",
13    url = "http://danse.chem.utk.edu",
14   
15    # Place this module under the sans package
16    #ext_package = "sans",
17   
18    # Use the pure python modules
19    package_dir = {"sans":".",
20                   "sans.perspectives":os.path.join("src", "sans",
21                                          "perspectives"),
22                   "sans.perspectives.simulation":os.path.join("src", "sans",
23                                          "perspectives",
24                                          "simulation")},
25   
26    packages = ["sans", "sans.perspectives", "sans.perspectives.simulation"]
27    )
28       
Note: See TracBrowser for help on using the repository browser.