1 | """ |
---|
2 | This is a setup.py script partly 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 | RESOURCES_FILES = [] |
---|
15 | |
---|
16 | #Periodictable data file |
---|
17 | DATA_FILES = periodictable.data_files() |
---|
18 | |
---|
19 | #invariant and calculator help doc |
---|
20 | import sans.perspectives.calculator as calculator |
---|
21 | DATA_FILES += calculator.data_files() |
---|
22 | import sans.perspectives.invariant as invariant |
---|
23 | DATA_FILES += invariant.data_files() |
---|
24 | import sans.models as models |
---|
25 | DATA_FILES += models.data_files() |
---|
26 | |
---|
27 | #CANSAxml reader data files |
---|
28 | RESOURCES_FILES.append(os.path.join(DataLoader.readers.get_data_path(),'defaults.xml')) |
---|
29 | |
---|
30 | # Locate libxml2 library |
---|
31 | lib_locs = ['/usr/local/lib', '/usr/lib'] |
---|
32 | libxml_path = None |
---|
33 | for item in lib_locs: |
---|
34 | libxml_path_test = '%s/libxml2.2.dylib' % item |
---|
35 | if os.path.isfile(libxml_path_test): |
---|
36 | libxml_path = libxml_path_test |
---|
37 | if libxml_path == None: |
---|
38 | raise RuntimeError, "Could not find libxml2 on the system" |
---|
39 | |
---|
40 | APP = ['sansview.py'] |
---|
41 | DATA_FILES += ['images','test','plugins','media'] |
---|
42 | OPTIONS = {'argv_emulation': True, |
---|
43 | 'packages': ['lxml','periodictable'], |
---|
44 | 'iconfile': 'images/ball.icns', |
---|
45 | 'frameworks':[libxml_path], |
---|
46 | 'resources': RESOURCES_FILES |
---|
47 | } |
---|
48 | |
---|
49 | setup( |
---|
50 | app=APP, |
---|
51 | data_files=DATA_FILES, |
---|
52 | include_package_data= True, |
---|
53 | options={'py2app': OPTIONS}, |
---|
54 | setup_requires=['py2app'], |
---|
55 | ) |
---|