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 a41034c was
a41034c,
checked in by Mathieu Doucet <doucetm@…>, 13 years ago
|
Re #5 repair perspective imports I broker earlier
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[c128284] | 1 | PLUGIN_ID = "Invariant plug-in 1.0" |
---|
[698a734] | 2 | import os |
---|
[a41034c] | 3 | from invariant import * |
---|
[b7cfa8d] | 4 | from distutils.filelist import findall |
---|
[698a734] | 5 | def get_data_path(media): |
---|
| 6 | """ |
---|
| 7 | """ |
---|
| 8 | # Check for data path in the package |
---|
| 9 | path = os.path.join(os.path.dirname(__file__), media) |
---|
| 10 | if os.path.isdir(path): |
---|
| 11 | return path |
---|
| 12 | |
---|
| 13 | # Check for data path next to exe/zip file. |
---|
| 14 | # If we are inside a py2exe zip file, we need to go up |
---|
[e56869f] | 15 | # to get to the directory containing |
---|
[85a24d9] | 16 | # the media for this module |
---|
[e56869f] | 17 | path = os.path.dirname(__file__) |
---|
[85a24d9] | 18 | #Look for maximum n_dir up of the current dir to find media |
---|
[e56869f] | 19 | n_dir = 12 |
---|
[698a734] | 20 | for i in range(n_dir): |
---|
[e56869f] | 21 | path, _ = os.path.split(path) |
---|
| 22 | media_path = os.path.join(path, media) |
---|
| 23 | if os.path.isdir(media_path): |
---|
[4a2b054] | 24 | module_media_path = os.path.join(media_path, 'invariant_media') |
---|
| 25 | if os.path.isdir(module_media_path): |
---|
| 26 | return module_media_path |
---|
| 27 | return media_path |
---|
[e56869f] | 28 | |
---|
[698a734] | 29 | raise RuntimeError('Could not find invariant media files') |
---|
| 30 | |
---|
| 31 | def data_files(): |
---|
| 32 | """ |
---|
| 33 | Return the data files associated with media invariant. |
---|
| 34 | |
---|
| 35 | The format is a list of (directory, [files...]) pairs which can be |
---|
| 36 | used directly in setup(...,data_files=...) for setup.py. |
---|
| 37 | |
---|
| 38 | """ |
---|
[4a2b054] | 39 | data_files = [] |
---|
[698a734] | 40 | path = get_data_path(media="media") |
---|
[b7cfa8d] | 41 | for f in findall(path): |
---|
[698a734] | 42 | data_files.append(('media/invariant_media', [f])) |
---|
| 43 | return data_files |
---|
Note: See
TracBrowser
for help on using the repository browser.