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 a5b7309 was
6976522,
checked in by Gervaise Alina <gervyh@…>, 13 years ago
|
change version number to 0.9
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[896abb3] | 1 | """ |
---|
| 2 | Setup script for the P(r) inversion module |
---|
| 3 | """ |
---|
[9e8dc22] | 4 | import sys, os |
---|
| 5 | |
---|
| 6 | # Then build and install the modules |
---|
| 7 | from distutils.core import setup, Extension |
---|
| 8 | |
---|
[cd17ab4] | 9 | from numpy.distutils.misc_util import get_numpy_include_dirs |
---|
| 10 | numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy") |
---|
[9e8dc22] | 11 | #numpy_incl = "Lib\site-packages\numpy\core\include\numpy" |
---|
[cd17ab4] | 12 | #numpy_incl_path = os.path.join(sys.prefix, "Lib", "site-packages", "numpy", "core", "include", "numpy") |
---|
[9e8dc22] | 13 | print "NUMPY", numpy_incl_path |
---|
| 14 | |
---|
| 15 | # Build the module name |
---|
| 16 | srcdir = "c_extensions" |
---|
| 17 | |
---|
| 18 | setup( |
---|
| 19 | name="pr_inversion", |
---|
[6976522] | 20 | version = "0.9", |
---|
[9e8dc22] | 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 |
---|
| 26 | package_dir = {"sans.pr.core":"c_extensions", |
---|
| 27 | "sans.pr": "."}, |
---|
| 28 | |
---|
| 29 | packages = ["sans.pr","sans.pr.core"], |
---|
| 30 | |
---|
| 31 | ext_modules = [ Extension("sans.pr.core.pr_inversion", |
---|
| 32 | sources = [ |
---|
| 33 | srcdir+"/Cinvertor.c", |
---|
| 34 | srcdir+"/invertor.c", |
---|
| 35 | ], |
---|
| 36 | include_dirs=[numpy_incl_path] |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | )]) |
---|
| 40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.