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 425ef040 was
01255b5,
checked in by Jae Cho <jhjcho@…>, 15 years ago
|
included SLD calculator for py2app
|
-
Property mode set to
100644
|
File size:
862 bytes
|
Line | |
---|
1 | """ |
---|
2 | This is a setup.py script generated by py2applet |
---|
3 | |
---|
4 | Usage: |
---|
5 | python setup.py py2app |
---|
6 | """ |
---|
7 | from setuptools import setup |
---|
8 | import periodictable.xsf |
---|
9 | import DataLoader.readers |
---|
10 | from distutils.sysconfig import get_python_lib |
---|
11 | import os |
---|
12 | |
---|
13 | DATA_FILES = [] |
---|
14 | |
---|
15 | #Periodictable data file |
---|
16 | DATA_FILES = periodictable.xsf.setup_data_files() |
---|
17 | |
---|
18 | #xml data files |
---|
19 | |
---|
20 | f = os.path.join(DataLoader.readers.get_data_path(),'default.xml') |
---|
21 | if os.path.isfile(f): |
---|
22 | DAT_FILES.append(('.',[f])) |
---|
23 | |
---|
24 | APP = ['sansview.py'] |
---|
25 | DATA_FILES = ['images','test','plugins','doc'] |
---|
26 | OPTIONS = {'argv_emulation': True,'packages': ['lxml','periodictable'], |
---|
27 | 'frameworks':['/usr/lib/libxml2.2.dylib'], |
---|
28 | #'plist': dict(LSPrefersPPC=True) |
---|
29 | } |
---|
30 | |
---|
31 | setup( |
---|
32 | app=APP, |
---|
33 | data_files=DATA_FILES, |
---|
34 | include_package_data= True, |
---|
35 | options={'py2app': OPTIONS}, |
---|
36 | setup_requires=['py2app'], |
---|
37 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.