Changeset aa61e49 in sasview for realSpaceModeling
- Timestamp:
- Nov 28, 2007 10:26:17 AM (17 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:
- 3d781ac
- Parents:
- 883a2ef
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
realSpaceModeling/setup.py
rf2d6445 raa61e49 24 24 return clist 25 25 26 # Top package name 27 #pck_top = "sansModeling" 28 pck_top = "sans.simulation" 29 26 30 # The temp directory that the compiled files will be put in 27 31 tempdir = "build/temp."+util.get_platform()+'-'+sysconfig.get_python_version() … … 33 37 34 38 # Define package directors, will be extended below 35 pck_dirs = { "sansModeling":"."}39 pck_dirs = {pck_top:"."} 36 40 37 41 # List of modules to install, will be extende below 38 pck_list = [ "sansModeling"]42 pck_list = [pck_top] 39 43 40 44 # List of python extensions, will be extended below … … 58 62 59 63 for module in mod_list: 60 pck_dirs[" sansModeling.%s" % module] = "%s/%s" % (module, module)61 pck_list.append(" sansModeling.%s" % module)64 pck_dirs["%s.%s" % (pck_top, module)] = "%s/%s" % (module, module) 65 pck_list.append("%s.%s" % (pck_top, module)) 62 66 63 67 src_m = "%s/%smodule" % (module, module) … … 85 89 86 90 for module in mod_list: 87 exts.append( Extension(" sansModeling.%s.%s" % (module, module),91 exts.append( Extension("%s.%s.%s" % (pck_top, module, module), 88 92 sources = file_list[module], 89 93 extra_objects=libs[module],
Note: See TracChangeset
for help on using the changeset viewer.