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