Changeset 935ae18 in sasview
- Timestamp:
- Apr 21, 2010 2:23:35 PM (15 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:
- d231f9a
- Parents:
- 2d3e123
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
invariantview/setup.py
rc128284 r935ae18 3 3 """ 4 4 5 6 import os 7 5 8 from distutils.core import setup 6 9 from distutils.sysconfig import get_python_lib 10 from distutils.filelist import findall 11 new_path = os.path.join(get_python_lib(),"sans","perspectives","invariant","media") 12 path = "media" 13 data_files = [] 14 for f in findall(path): 15 if os.path.split(f)[0].count('.svn')==0: 16 data_files.append((new_path, [f])) 17 from distutils.core import setup 7 18 setup( 8 19 name="invariant", … … 10 21 package_dir = {"sans.perspectives":"perspectives", 11 22 "sans.perspectives.invariant":"perspectives/invariant"}, 23 data_files=data_files, 12 24 packages = ["sans.perspectives", 13 25 "sans.perspectives.invariant"],
Note: See TracChangeset
for help on using the changeset viewer.