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 5385a9e was
481ad37,
checked in by Mathieu Doucet <doucetm@…>, 15 years ago
|
DataLoader?: update setup.py to allow install with —prefix
|
-
Property mode set to
100644
|
File size:
984 bytes
|
Line | |
---|
1 | """ |
---|
2 | Installation script for SANS DataLoader |
---|
3 | """ |
---|
4 | import os, sys |
---|
5 | |
---|
6 | # Then build and install the modules |
---|
7 | from distutils.core import setup, Extension |
---|
8 | from numpy.distutils.misc_util import get_numpy_include_dirs |
---|
9 | numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy") |
---|
10 | setup( |
---|
11 | name="DataLoader", |
---|
12 | version = "0.2", |
---|
13 | description = "Python module for loading", |
---|
14 | author = "University of Tennessee", |
---|
15 | url = "http://danse.chem.utk.edu", |
---|
16 | |
---|
17 | package_dir = {"DataLoader":".", |
---|
18 | "DataLoader.extensions":"extensions"}, |
---|
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 | )]) |
---|
31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.