[ff06528] | 1 | """ |
---|
| 2 | Setup script for the P(r) inversion module |
---|
| 3 | """ |
---|
| 4 | import sys |
---|
| 5 | import os |
---|
| 6 | |
---|
| 7 | # Then build and install the modules |
---|
| 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") |
---|
| 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 | |
---|
| 15 | # Build the module name |
---|
[18c6f6a] | 16 | srcdir = os.path.join("src", "sans", "pr", "c_extensions") |
---|
[ff06528] | 17 | |
---|
| 18 | setup( |
---|
| 19 | 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", |
---|
| 24 | |
---|
| 25 | # Use the pure python modules |
---|
[18c6f6a] | 26 | package_dir = {"sans":"src/sans", |
---|
| 27 | "sans.pr.core":srcdir, |
---|
| 28 | "sans.pr": os.path.join("src","sans", "pr")}, |
---|
[ff06528] | 29 | |
---|
[18c6f6a] | 30 | packages = ["sans", "sans.pr","sans.pr.core"], |
---|
[ff06528] | 31 | |
---|
| 32 | ext_modules = [ Extension("sans.pr.core.pr_inversion", |
---|
| 33 | sources = [ os.path.join(srcdir, "Cinvertor.c"), |
---|
| 34 | os.path.join(srcdir, "invertor.c"), |
---|
| 35 | ], |
---|
| 36 | include_dirs=[numpy_incl_path] |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | )]) |
---|
| 40 | |
---|