Show More
@@ -1,150 +1,150 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 = 3 |
|
22 | _version_major = 3 | |
23 | _version_minor = 2 |
|
23 | _version_minor = 2 | |
24 | _version_patch = 0 |
|
24 | _version_patch = 0 | |
25 | _version_extra = 'dev' |
|
25 | # _version_extra = 'dev' | |
26 | # _version_extra = 'rc1' |
|
26 | # _version_extra = 'rc1' | |
27 |
|
|
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 = (5, 0) |
|
43 | kernel_protocol_version_info = (5, 0) | |
44 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info |
|
44 | kernel_protocol_version = "%i.%i" % kernel_protocol_version_info | |
45 |
|
45 | |||
46 | description = "IPython: Productive Interactive Computing" |
|
46 | description = "IPython: Productive Interactive Computing" | |
47 |
|
47 | |||
48 | long_description = \ |
|
48 | long_description = \ | |
49 | """ |
|
49 | """ | |
50 | IPython provides a rich toolkit to help you make the most out of using Python |
|
50 | IPython provides a rich toolkit to help you make the most out of using Python | |
51 | interactively. Its main components are: |
|
51 | interactively. Its main components are: | |
52 |
|
52 | |||
53 | * Powerful interactive Python shells (terminal- and Qt-based). |
|
53 | * Powerful interactive Python shells (terminal- and Qt-based). | |
54 | * A web-based interactive notebook environment with all shell features plus |
|
54 | * A web-based interactive notebook environment with all shell features plus | |
55 | support for embedded figures, animations and rich media. |
|
55 | support for embedded figures, animations and rich media. | |
56 | * Support for interactive data visualization and use of GUI toolkits. |
|
56 | * Support for interactive data visualization and use of GUI toolkits. | |
57 | * Flexible, embeddable interpreters to load into your own projects. |
|
57 | * Flexible, embeddable interpreters to load into your own projects. | |
58 | * A high-performance library for high level and interactive parallel computing |
|
58 | * A high-performance library for high level and interactive parallel computing | |
59 | that works in multicore systems, clusters, supercomputing and cloud scenarios. |
|
59 | that works in multicore systems, clusters, supercomputing and cloud scenarios. | |
60 |
|
60 | |||
61 | The enhanced interactive Python shells have the following main features: |
|
61 | The enhanced interactive Python shells have the following main features: | |
62 |
|
62 | |||
63 | * Comprehensive object introspection. |
|
63 | * Comprehensive object introspection. | |
64 |
|
64 | |||
65 | * Input history, persistent across sessions. |
|
65 | * Input history, persistent across sessions. | |
66 |
|
66 | |||
67 | * Caching of output results during a session with automatically generated |
|
67 | * Caching of output results during a session with automatically generated | |
68 | references. |
|
68 | references. | |
69 |
|
69 | |||
70 | * Extensible tab completion, with support by default for completion of python |
|
70 | * Extensible tab completion, with support by default for completion of python | |
71 | variables and keywords, filenames and function keywords. |
|
71 | variables and keywords, filenames and function keywords. | |
72 |
|
72 | |||
73 | * Extensible system of 'magic' commands for controlling the environment and |
|
73 | * Extensible system of 'magic' commands for controlling the environment and | |
74 | performing many tasks related either to IPython or the operating system. |
|
74 | performing many tasks related either to IPython or the operating system. | |
75 |
|
75 | |||
76 | * A rich configuration system with easy switching between different setups |
|
76 | * A rich configuration system with easy switching between different setups | |
77 | (simpler than changing $PYTHONSTARTUP environment variables every time). |
|
77 | (simpler than changing $PYTHONSTARTUP environment variables every time). | |
78 |
|
78 | |||
79 | * Session logging and reloading. |
|
79 | * Session logging and reloading. | |
80 |
|
80 | |||
81 | * Extensible syntax processing for special purpose situations. |
|
81 | * Extensible syntax processing for special purpose situations. | |
82 |
|
82 | |||
83 | * Access to the system shell with user-extensible alias system. |
|
83 | * Access to the system shell with user-extensible alias system. | |
84 |
|
84 | |||
85 | * Easily embeddable in other Python programs and GUIs. |
|
85 | * Easily embeddable in other Python programs and GUIs. | |
86 |
|
86 | |||
87 | * Integrated access to the pdb debugger and the Python profiler. |
|
87 | * Integrated access to the pdb debugger and the Python profiler. | |
88 |
|
88 | |||
89 | The parallel computing architecture has the following main features: |
|
89 | The parallel computing architecture has the following main features: | |
90 |
|
90 | |||
91 | * Quickly parallelize Python code from an interactive Python/IPython session. |
|
91 | * Quickly parallelize Python code from an interactive Python/IPython session. | |
92 |
|
92 | |||
93 | * A flexible and dynamic process model that be deployed on anything from |
|
93 | * A flexible and dynamic process model that be deployed on anything from | |
94 | multicore workstations to supercomputers. |
|
94 | multicore workstations to supercomputers. | |
95 |
|
95 | |||
96 | * An architecture that supports many different styles of parallelism, from |
|
96 | * An architecture that supports many different styles of parallelism, from | |
97 | message passing to task farming. |
|
97 | message passing to task farming. | |
98 |
|
98 | |||
99 | * Both blocking and fully asynchronous interfaces. |
|
99 | * Both blocking and fully asynchronous interfaces. | |
100 |
|
100 | |||
101 | * High level APIs that enable many things to be parallelized in a few lines |
|
101 | * High level APIs that enable many things to be parallelized in a few lines | |
102 | of code. |
|
102 | of code. | |
103 |
|
103 | |||
104 | * Share live parallel jobs with other users securely. |
|
104 | * Share live parallel jobs with other users securely. | |
105 |
|
105 | |||
106 | * Dynamically load balanced task farming system. |
|
106 | * Dynamically load balanced task farming system. | |
107 |
|
107 | |||
108 | * Robust error handling in parallel code. |
|
108 | * Robust error handling in parallel code. | |
109 |
|
109 | |||
110 | The latest development version is always available from IPython's `GitHub |
|
110 | The latest development version is always available from IPython's `GitHub | |
111 | site <http://github.com/ipython>`_. |
|
111 | site <http://github.com/ipython>`_. | |
112 | """ |
|
112 | """ | |
113 |
|
113 | |||
114 | license = 'BSD' |
|
114 | license = 'BSD' | |
115 |
|
115 | |||
116 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), |
|
116 | authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), | |
117 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), |
|
117 | 'Janko' : ('Janko Hauser','jhauser@zscout.de'), | |
118 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), |
|
118 | 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), | |
119 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), |
|
119 | 'Ville' : ('Ville Vainio','vivainio@gmail.com'), | |
120 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), |
|
120 | 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), | |
121 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), |
|
121 | 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), | |
122 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), |
|
122 | 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), | |
123 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), |
|
123 | 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), | |
124 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), |
|
124 | 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), | |
125 | } |
|
125 | } | |
126 |
|
126 | |||
127 | author = 'The IPython Development Team' |
|
127 | author = 'The IPython Development Team' | |
128 |
|
128 | |||
129 | author_email = 'ipython-dev@scipy.org' |
|
129 | author_email = 'ipython-dev@scipy.org' | |
130 |
|
130 | |||
131 | url = 'http://ipython.org' |
|
131 | url = 'http://ipython.org' | |
132 |
|
132 | |||
133 | download_url = 'https://github.com/ipython/ipython/downloads' |
|
133 | download_url = 'https://github.com/ipython/ipython/downloads' | |
134 |
|
134 | |||
135 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] |
|
135 | platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8'] | |
136 |
|
136 | |||
137 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', |
|
137 | keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed', | |
138 | 'Web-based computing', 'Qt console', 'Embedding'] |
|
138 | 'Web-based computing', 'Qt console', 'Embedding'] | |
139 |
|
139 | |||
140 | classifiers = [ |
|
140 | classifiers = [ | |
141 | 'Intended Audience :: Developers', |
|
141 | 'Intended Audience :: Developers', | |
142 | 'Intended Audience :: Science/Research', |
|
142 | 'Intended Audience :: Science/Research', | |
143 | 'License :: OSI Approved :: BSD License', |
|
143 | 'License :: OSI Approved :: BSD License', | |
144 | 'Programming Language :: Python', |
|
144 | 'Programming Language :: Python', | |
145 | 'Programming Language :: Python :: 2', |
|
145 | 'Programming Language :: Python :: 2', | |
146 | 'Programming Language :: Python :: 2.7', |
|
146 | 'Programming Language :: Python :: 2.7', | |
147 | 'Programming Language :: Python :: 3', |
|
147 | 'Programming Language :: Python :: 3', | |
148 | 'Topic :: System :: Distributed Computing', |
|
148 | 'Topic :: System :: Distributed Computing', | |
149 | 'Topic :: System :: Shells' |
|
149 | 'Topic :: System :: Shells' | |
150 | ] |
|
150 | ] |
@@ -1,10 +1,10 b'' | |||||
1 | // Copyright (c) IPython Development Team. |
|
1 | // Copyright (c) IPython Development Team. | |
2 | // Distributed under the terms of the Modified BSD License. |
|
2 | // Distributed under the terms of the Modified BSD License. | |
3 |
|
3 | |||
4 | var IPython = IPython || {}; |
|
4 | var IPython = IPython || {}; | |
5 | define([], function(){ |
|
5 | define([], function(){ | |
6 | "use strict"; |
|
6 | "use strict"; | |
7 |
IPython.version = "3.2.0 |
|
7 | IPython.version = "3.2.0"; | |
8 | IPython._target = '_blank'; |
|
8 | IPython._target = '_blank'; | |
9 | return IPython; |
|
9 | return IPython; | |
10 | }); |
|
10 | }); |
General Comments 0
You need to be logged in to leave comments.
Login now