Changeset 18c6f6a in sasview
- Timestamp:
- Aug 10, 2011 3:15:01 PM (13 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:
- 5ad0594
- Parents:
- 766e9e0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inversionview/setup.py
rd167af9 r18c6f6a 10 10 name="prview", 11 11 description="P(r) inversion perspective for SansView", 12 package_dir={"sans.perspectives":"sans/perspectives", 13 "sans.perspectives.pr":"sans/perspectives/pr"}, 12 package_dir={"sans":"src/sans", 13 "sans.perspectives":"src/sans/perspectives", 14 "sans.perspectives.pr":"src/sans/perspectives/pr"}, 14 15 packages=["sans.perspectives","sans", 15 16 "sans.perspectives.pr"], 16 17 package_data={"sans.perspectives.pr":['images/*']}, 17 scripts= [os.path.join(currpath, "scripts", "PrView.py")]18 #scripts= [os.path.join(currpath, "scripts", "PrView.py")] 18 19 ) 19 20 -
pr_inversion/setup.py
ra896096 r18c6f6a 14 14 15 15 # Build the module name 16 srcdir = os.path.join("s ans", "pr", "c_extensions")16 srcdir = os.path.join("src", "sans", "pr", "c_extensions") 17 17 18 18 setup( … … 24 24 25 25 # Use the pure python modules 26 package_dir = {"sans.pr.core":srcdir, 27 "sans.pr": os.path.join("sans", "pr")}, 26 package_dir = {"sans":"src/sans", 27 "sans.pr.core":srcdir, 28 "sans.pr": os.path.join("src","sans", "pr")}, 28 29 29 packages = ["sans .pr","sans.pr.core"],30 packages = ["sans", "sans.pr","sans.pr.core"], 30 31 31 32 ext_modules = [ Extension("sans.pr.core.pr_inversion",
Note: See TracChangeset
for help on using the changeset viewer.