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