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