Changeset 72cad53 in sasview


Ignore:
Timestamp:
Aug 11, 2011 4:29:45 PM (13 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
ac53523
Parents:
aa0139a9
Message:

edit manifest

Location:
pr_inversion
Files:
4 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • pr_inversion/setup.py

    r18c6f6a r72cad53  
    44import sys 
    55import os 
    6  
    76# Then build and install the modules 
    87from distutils.core import setup, Extension 
    98from numpy.distutils.misc_util import get_numpy_include_dirs 
     9 
     10 
    1011numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy") 
    11 #numpy_incl = "Lib\site-packages\numpy\core\include\numpy" 
    12 #numpy_incl_path = os.path.join(sys.prefix, "Lib", "site-packages", "numpy", "core", "include", "numpy") 
    13 #print "NUMPY", numpy_incl_path 
    14  
    1512# Build the module name 
    1613srcdir  = os.path.join("src", "sans", "pr", "c_extensions") 
     
    1815setup( 
    1916    name="pr_inversion", 
    20     version = "0.9", 
    21     description = "Python module inversion of the scattering intensity to P(r)", 
    22     author = "University of Tennessee", 
    23     url = "danse.chem.utk.edu", 
     17    version="0.9", 
     18    description="Python module inversion of the scattering intensity to P(r)", 
     19    author="University of Tennessee", 
     20    url="danse.chem.utk.edu", 
    2421     
    2522    # Use the pure python modules 
     
    2724                   "sans.pr.core":srcdir, 
    2825                   "sans.pr": os.path.join("src","sans", "pr")}, 
    29      
    3026    packages = ["sans", "sans.pr","sans.pr.core"], 
    31      
    3227    ext_modules = [ Extension("sans.pr.core.pr_inversion", 
    3328     sources = [ os.path.join(srcdir, "Cinvertor.c"), 
     
    3631         include_dirs=[numpy_incl_path] 
    3732      
    38       
    3933     )]) 
    4034         
Note: See TracChangeset for help on using the changeset viewer.