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