Changeset cbb8bb6 in sasview for DataLoader
- Timestamp:
- Feb 10, 2011 11:47:30 AM (14 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 642b259
- Parents:
- 3ab116f
- Location:
- DataLoader
- Files:
-
- 1 added
- 5 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
DataLoader/__init__.py
rbbc8013 rcbb8bb6 1 1 from data_info import * 2 2 from manipulations import * 3 from qsmearing import *4 3 from readers import * -
DataLoader/setup.py
r481ad37 rcbb8bb6 2 2 Installation script for SANS DataLoader 3 3 """ 4 import os, sys 5 4 import os 5 import sys 6 6 7 # Then build and install the modules 7 from distutils.core import setup , Extension8 from numpy.distutils.misc_util import get_numpy_include_dirs9 numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy")8 from distutils.core import setup#, Extension 9 #from numpy.distutils.misc_util import get_numpy_include_dirs 10 #numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy") 10 11 setup( 11 12 name="DataLoader", … … 15 16 url = "http://danse.chem.utk.edu", 16 17 17 package_dir = {"DataLoader":".", 18 "DataLoader.extensions":"extensions"}, 18 package_dir = {"DataLoader":"."}, 19 19 package_data={"DataLoader.readers": ['defaults.xml']}, 20 packages = ["DataLoader","DataLoader.readers","DataLoader.extensions"], 21 22 ext_modules = [ Extension("DataLoader.extensions.smearer", 23 sources = [ 24 "extensions/smearer_module.cpp", 25 "extensions/smearer.cpp", 26 ], 27 include_dirs=["extensions", numpy_incl_path] 28 29 30 )]) 20 packages = ["DataLoader","DataLoader.readers"] 21 ) 31 22
Note: See TracChangeset
for help on using the changeset viewer.