Show More
@@ -1,149 +1,149 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """Release data for the IPython project.""" |
|
2 | """Release data for the IPython project.""" | |
3 |
|
3 | |||
4 | #----------------------------------------------------------------------------- |
|
4 | #----------------------------------------------------------------------------- | |
5 | # Copyright (c) 2008, IPython Development Team. |
|
5 | # Copyright (c) 2008, IPython Development Team. | |
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> |
|
6 | # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> | |
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> |
|
7 | # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> | |
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> |
|
8 | # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> | |
9 | # |
|
9 | # | |
10 | # Distributed under the terms of the Modified BSD License. |
|
10 | # Distributed under the terms of the Modified BSD License. | |
11 | # |
|
11 | # | |
12 | # The full license is in the file COPYING.txt, distributed with this software. |
|
12 | # The full license is in the file COPYING.txt, distributed with this software. | |
13 | #----------------------------------------------------------------------------- |
|
13 | #----------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | # Name of the package for release purposes. This is the name which labels |
|
15 | # Name of the package for release purposes. This is the name which labels | |
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. |
|
16 | # the tarballs and RPMs made by distutils, so it's best to lowercase it. | |
17 | name = 'ipython' |
|
17 | name = 'ipython' | |
18 |
|
18 | |||
19 | # IPython version information. An empty _version_extra corresponds to a full |
|
19 | # IPython version information. An empty _version_extra corresponds to a full | |
20 | # release. 'dev' as a _version_extra string means this is a development |
|
20 | # release. 'dev' as a _version_extra string means this is a development | |
21 | # version |
|
21 | # version | |
22 | _version_major = 2 |
|
22 | _version_major = 2 | |
23 | _version_minor = 1 |
|
23 | _version_minor = 1 | |
24 | _version_patch = 0 |
|
24 | _version_patch = 0 | |
25 |
_version_extra = ' |
|
25 | _version_extra = 'maint' | |
26 | # _version_extra = 'rc1' |
|
26 | # _version_extra = 'rc1' | |
27 | # _version_extra = '' # Uncomment this for full releases |
|
27 | # _version_extra = '' # Uncomment this for full releases | |
28 |
|
28 | |||
29 | # release.codename is deprecated in 2.0, will be removed in 3.0 |
|
29 | # release.codename is deprecated in 2.0, will be removed in 3.0 | |
30 | codename = '' |
|
30 | codename = '' | |
31 |
|
31 | |||
32 | # Construct full version string from these. |
|
32 | # Construct full version string from these. | |
33 | _ver = [_version_major, _version_minor, _version_patch] |
|
33 | _ver = [_version_major, _version_minor, _version_patch] | |
34 |
|
34 | |||
35 | __version__ = '.'.join(map(str, _ver)) |
|
35 | __version__ = '.'.join(map(str, _ver)) | |
36 | if _version_extra: |
|
36 | if _version_extra: | |
37 | __version__ = __version__ + '-' + _version_extra |
|
37 | __version__ = __version__ + '-' + _version_extra | |
38 |
|
38 | |||
39 | version = __version__ # backwards compatibility name |
|
39 | version = __version__ # backwards compatibility name | |
40 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) |
|
40 | version_info = (_version_major, _version_minor, _version_patch, _version_extra) | |
41 |
|
41 | |||
42 | # Change this when incrementing the kernel protocol version |
|
42 | # Change this when incrementing the kernel protocol version | |
43 | kernel_protocol_version_info = (4, 1) |
|
43 | kernel_protocol_version_info = (4, 1) | |
44 |
|
44 | |||
45 | description = "IPython: Productive Interactive Computing" |
|
45 | description = "IPython: Productive Interactive Computing" | |
46 |
|
46 | |||
47 | long_description = \ |
|
47 | long_description = \ | |
48 | """ |
|
48 | """ | |
49 | IPython provides a rich toolkit to help you make the most out of using Python |
|
49 | IPython provides a rich toolkit to help you make the most out of using Python | |
50 | interactively. Its main components are: |
|
50 | interactively. Its main components are: | |
51 |
|
51 | |||
52 | * Powerful interactive Python shells (terminal- and Qt-based). |
|
52 | * Powerful interactive Python shells (terminal- and Qt-based). | |
53 | * A web-based interactive notebook environment with all shell features plus |
|
53 | * A web-based interactive notebook environment with all shell features plus | |
54 | support for embedded figures, animations and rich media. |
|
54 | support for embedded figures, animations and rich media. | |
55 | * Support for interactive data visualization and use of GUI toolkits. |
|
55 | * Support for interactive data visualization and use of GUI toolkits. | |
56 | * Flexible, embeddable interpreters to load into your own projects. |
|
56 | * Flexible, embeddable interpreters to load into your own projects. | |
57 | * A high-performance library for high level and interactive parallel computing |
|
57 | * A high-performance library for high level and interactive parallel computing | |
58 | that works in multicore systems, clusters, supercomputing and cloud scenarios. |
|
58 | that works in multicore systems, clusters, supercomputing and cloud scenarios. | |
59 |
|
59 | |||
60 | The enhanced interactive Python shells have the following main features: |
|
60 | The enhanced interactive Python shells have the following main features: | |
61 |
|
61 | |||
62 | * Comprehensive object introspection. |
|
62 | * Comprehensive object introspection. | |
63 |
|
63 | |||
64 | * Input history, persistent across sessions. |
|
64 | * Input history, persistent across sessions. | |
65 |
|
65 | |||
66 | * Caching of output results during a session with automatically generated |
|
66 | * Caching of output results during a session with automatically generated | |
67 | references. |
|
67 | references. | |
68 |
|
68 | |||
69 | * Extensible tab completion, with support by default for completion of python |
|
69 | * Extensible tab completion, with support by default for completion of python | |
70 | variables and keywords, filenames and function keywords. |
|
70 | variables and keywords, filenames and function keywords. | |
71 |
|
71 | |||
72 | * Extensible system of 'magic' commands for controlling the environment and |
|
72 | * Extensible system of 'magic' commands for controlling the environment and | |
73 | performing many tasks related either to IPython or the operating system. |
|
73 | performing many tasks related either to IPython or the operating system. | |
74 |
|
74 | |||
75 | * A rich configuration system with easy switching between different setups |
|
75 | * A rich configuration system with easy switching between different setups | |
76 | (simpler than changing $PYTHONSTARTUP environment variables every time). |
|
76 | (simpler than changing $PYTHONSTARTUP environment variables every time). | |
77 |
|
77 | |||
78 | * Session logging and reloading. |
|
78 | * Session logging and reloading. | |
79 |
|
79 | |||
80 | * Extensible syntax processing for special purpose situations. |
|
80 | * Extensible syntax processing for special purpose situations. | |
81 |
|
81 | |||
82 | * Access to the system shell with user-extensible alias system. |
|
82 | * Access to the system shell with user-extensible alias system. | |
83 |
|
83 | |||
84 | * Easily embeddable in other Python programs and GUIs. |
|
84 | * Easily embeddable in other Python programs and GUIs. | |
85 |
|
85 | |||
86 | * Integrated access to the pdb debugger and the Python profiler. |
|
86 | * Integrated access to the pdb debugger and the Python profiler. | |
87 |
|
87 | |||
88 | The parallel computing architecture has the following main features: |
|
88 | The parallel computing architecture has the following main features: | |
89 |
|
89 | |||
90 | * Quickly parallelize Python code from an interactive Python/IPython session. |
|
90 | * Quickly parallelize Python code from an interactive Python/IPython session. | |
91 |
|
91 | |||
92 | * A flexible and dynamic process model that be deployed on anything from |
|
92 | * A flexible and dynamic process model that be deployed on anything from | |
93 | multicore workstations to supercomputers. |
|
93 | multicore workstations to supercomputers. | |
94 |
|
94 | |||
95 | * An architecture that supports many different styles of parallelism, from |
|
95 | * An architecture that supports many different styles of parallelism, from | |
96 | message passing to task farming. |
|
96 | message passing to task farming. | |
97 |
|
97 | |||
98 | * Both blocking and fully asynchronous interfaces. |
|
98 | * Both blocking and fully asynchronous interfaces. | |
99 |
|
99 | |||
100 | * High level APIs that enable many things to be parallelized in a few lines |
|
100 | * High level APIs that enable many things to be parallelized in a few lines | |
101 | of code. |
|
101 | of code. | |
102 |
|
102 | |||
103 | * Share live parallel jobs with other users securely. |
|
103 | * Share live parallel jobs with other users securely. | |
104 |
|
104 | |||
105 | * Dynamically load balanced task farming system. |
|
105 | * Dynamically load balanced task farming system. | |
106 |
|
106 | |||
107 | * Robust error handling in parallel code. |
|
107 | * Robust error handling in parallel code. | |
108 |
|
108 | |||
109 | The latest development version is always available from IPython's `GitHub |
|
109 | The latest development version is always available from IPython's `GitHub | |
110 | site <http://github.com/ipython>`_. |
|
110 | site <http://github.com/ipython>`_. | |
111 | """ |
|
111 | """ | |
112 |
|
112 | |||
113 | license = 'BSD' |
|
113 | license = 'BSD' | |
114 |
|
114 | |||
115 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), |
|
115 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), | |
116 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
116 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
117 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
117 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
118 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), |
|
118 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), | |
119 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), |
|
119 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), | |
120 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), |
|
120 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), | |
121 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), |
|
121 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), | |
122 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), |
|
122 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), | |
123 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), |
|
123 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), | |
124 | } |
|
124 | } | |
125 |
|
125 | |||
126 | author = 'The IPython Development Team' |
|
126 | author = 'The IPython Development Team' | |
127 |
|
127 | |||
128 | author_email = 'ipython-dev@scipy.org' |
|
128 | author_email = 'ipython-dev@scipy.org' | |
129 |
|
129 | |||
130 | url = 'http://ipython.org' |
|
130 | url = 'http://ipython.org' | |
131 |
|
131 | |||
132 | download_url = 'https://github.com/ipython/ipython/downloads' |
|
132 | download_url = 'https://github.com/ipython/ipython/downloads' | |
133 |
|
133 | |||
134 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] |
|
134 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] | |
135 |
|
135 | |||
136 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', |
|
136 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', | |
137 | 'Web-based computing', 'Qt console', 'Embedding'] |
|
137 | 'Web-based computing', 'Qt console', 'Embedding'] | |
138 |
|
138 | |||
139 | classifiers = [ |
|
139 | classifiers = [ | |
140 | 'Intended Audience :: Developers', |
|
140 | 'Intended Audience :: Developers', | |
141 | 'Intended Audience :: Science/Research', |
|
141 | 'Intended Audience :: Science/Research', | |
142 | 'License :: OSI Approved :: BSD License', |
|
142 | 'License :: OSI Approved :: BSD License', | |
143 | 'Programming Language :: Python', |
|
143 | 'Programming Language :: Python', | |
144 | 'Programming Language :: Python :: 2', |
|
144 | 'Programming Language :: Python :: 2', | |
145 | 'Programming Language :: Python :: 2.7', |
|
145 | 'Programming Language :: Python :: 2.7', | |
146 | 'Programming Language :: Python :: 3', |
|
146 | 'Programming Language :: Python :: 3', | |
147 | 'Topic :: System :: Distributed Computing', |
|
147 | 'Topic :: System :: Distributed Computing', | |
148 | 'Topic :: System :: Shells' |
|
148 | 'Topic :: System :: Shells' | |
149 | ] |
|
149 | ] |
@@ -1,34 +1,34 b'' | |||||
1 | //---------------------------------------------------------------------------- |
|
1 | //---------------------------------------------------------------------------- | |
2 | // Copyright (C) 2011 The IPython Development Team |
|
2 | // Copyright (C) 2011 The IPython Development Team | |
3 | // |
|
3 | // | |
4 | // Distributed under the terms of the BSD License. The full license is in |
|
4 | // Distributed under the terms of the BSD License. The full license is in | |
5 | // the file COPYING, distributed as part of this software. |
|
5 | // the file COPYING, distributed as part of this software. | |
6 | //---------------------------------------------------------------------------- |
|
6 | //---------------------------------------------------------------------------- | |
7 |
|
7 | |||
8 | var IPython = IPython || {}; |
|
8 | var IPython = IPython || {}; | |
9 |
|
9 | |||
10 |
IPython.version = "2.1.0- |
|
10 | IPython.version = "2.1.0-maint"; | |
11 |
|
11 | |||
12 | IPython.namespace = function (ns_string) { |
|
12 | IPython.namespace = function (ns_string) { | |
13 | "use strict"; |
|
13 | "use strict"; | |
14 |
|
14 | |||
15 | var parts = ns_string.split('.'), |
|
15 | var parts = ns_string.split('.'), | |
16 | parent = IPython, |
|
16 | parent = IPython, | |
17 | i; |
|
17 | i; | |
18 |
|
18 | |||
19 | // String redundant leading global |
|
19 | // String redundant leading global | |
20 | if (parts[0] === "IPython") { |
|
20 | if (parts[0] === "IPython") { | |
21 | parts = parts.slice(1); |
|
21 | parts = parts.slice(1); | |
22 | } |
|
22 | } | |
23 |
|
23 | |||
24 | for (i=0; i<parts.length; i+=1) { |
|
24 | for (i=0; i<parts.length; i+=1) { | |
25 | // Create property if it doesn't exist |
|
25 | // Create property if it doesn't exist | |
26 | if (typeof parent[parts[i]] === "undefined") { |
|
26 | if (typeof parent[parts[i]] === "undefined") { | |
27 | parent[parts[i]] = {}; |
|
27 | parent[parts[i]] = {}; | |
28 | } |
|
28 | } | |
29 | } |
|
29 | } | |
30 | return parent; |
|
30 | return parent; | |
31 | }; |
|
31 | }; | |
32 |
|
32 | |||
33 |
|
33 | |||
34 |
|
34 |
General Comments 0
You need to be logged in to leave comments.
Login now