Show More
@@ -1,34 +1,35 b'' | |||||
1 | # encoding: utf-8 |
|
1 | # encoding: utf-8 | |
2 | """ |
|
2 | """ | |
3 | setup.py |
|
3 | setup.py | |
4 |
|
4 | |||
5 | Setuptools installer script for generating a Cocoa plugin for the |
|
5 | Setuptools installer script for generating a Cocoa plugin for the | |
6 | IPython cocoa frontend |
|
6 | IPython cocoa frontend | |
7 |
|
7 | |||
8 | Author: Barry Wark |
|
8 | Author: Barry Wark | |
9 | """ |
|
9 | """ | |
10 | __docformat__ = "restructuredtext en" |
|
10 | __docformat__ = "restructuredtext en" | |
11 |
|
11 | |||
12 | #----------------------------------------------------------------------------- |
|
12 | #----------------------------------------------------------------------------- | |
13 | # Copyright (C) 2008 The IPython Development Team |
|
13 | # Copyright (C) 2008 The IPython Development Team | |
14 | # |
|
14 | # | |
15 | # Distributed under the terms of the BSD License. The full license is in |
|
15 | # Distributed under the terms of the BSD License. The full license is in | |
16 | # the file COPYING, distributed as part of this software. |
|
16 | # the file COPYING, distributed as part of this software. | |
17 | #----------------------------------------------------------------------------- |
|
17 | #----------------------------------------------------------------------------- | |
18 |
|
18 | |||
19 | from setuptools import setup |
|
19 | from setuptools import setup | |
20 |
|
20 | |||
21 | infoPlist = dict( |
|
21 | infoPlist = dict( | |
22 | CFBundleDevelopmentRegion='English', |
|
22 | CFBundleDevelopmentRegion='English', | |
23 | CFBundleIdentifier='org.scipy.ipython.cocoa_frontend', |
|
23 | CFBundleIdentifier='org.scipy.ipython.cocoa_frontend', | |
24 | NSPrincipalClass='IPythonCocoaController', |
|
24 | NSPrincipalClass='IPythonCocoaController', | |
25 | ) |
|
25 | ) | |
26 |
|
26 | |||
27 | setup( |
|
27 | setup( | |
28 | plugin=['IPythonCocoaFrontendLoader.py'], |
|
28 | plugin=['IPythonCocoaFrontendLoader.py'], | |
29 | setup_requires=['py2app'], |
|
29 | setup_requires=['py2app'], | |
30 | options=dict(py2app=dict( |
|
30 | options=dict(py2app=dict( | |
31 | plist=infoPlist, |
|
31 | plist=infoPlist, | |
32 | excludes=['IPython','twisted'] |
|
32 | site_packages=True, | |
|
33 | excludes=['IPython','twisted','PyObjCTools'] | |||
33 | )), |
|
34 | )), | |
34 | ) No newline at end of file |
|
35 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now