##// END OF EJS Templates
Fix classifiers - missing comma.
Fernando Perez -
Show More
@@ -1,141 +1,141 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-2011, IPython Development Team.
5 # Copyright (c) 2008-2011, IPython Development Team.
6 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
6 # Copyright (c) 2001-2007, 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 = '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 * Support for interactive data visualization and use of GUI toolkits.
48 * Support for interactive data visualization and use of GUI toolkits.
49 * Flexible, embeddable interpreters to load into your own projects.
49 * Flexible, embeddable interpreters to load into your own projects.
50 * Tools for high level and interactive parallel computing.
50 * Tools for high level and interactive parallel computing.
51
51
52 The enhanced interactive Python shells have the following main features:
52 The enhanced interactive Python shells have the following main features:
53
53
54 * Comprehensive object introspection.
54 * Comprehensive object introspection.
55
55
56 * Input history, persistent across sessions.
56 * Input history, persistent across sessions.
57
57
58 * Caching of output results during a session with automatically generated
58 * Caching of output results during a session with automatically generated
59 references.
59 references.
60
60
61 * Readline based name completion.
61 * Readline based name completion.
62
62
63 * Extensible system of 'magic' commands for controlling the environment and
63 * Extensible system of 'magic' commands for controlling the environment and
64 performing many tasks related either to IPython or the operating system.
64 performing many tasks related either to IPython or the operating system.
65
65
66 * Configuration system with easy switching between different setups (simpler
66 * Configuration system with easy switching between different setups (simpler
67 than changing $PYTHONSTARTUP environment variables every time).
67 than changing $PYTHONSTARTUP environment variables every time).
68
68
69 * Session logging and reloading.
69 * Session logging and reloading.
70
70
71 * Extensible syntax processing for special purpose situations.
71 * Extensible syntax processing for special purpose situations.
72
72
73 * Access to the system shell with user-extensible alias system.
73 * Access to the system shell with user-extensible alias system.
74
74
75 * Easily embeddable in other Python programs and wxPython GUIs.
75 * Easily embeddable in other Python programs and wxPython GUIs.
76
76
77 * Integrated access to the pdb debugger and the Python profiler.
77 * Integrated access to the pdb debugger and the Python profiler.
78
78
79 The parallel computing architecture has the following main features:
79 The parallel computing architecture has the following main features:
80
80
81 * Quickly parallelize Python code from an interactive Python/IPython session.
81 * Quickly parallelize Python code from an interactive Python/IPython session.
82
82
83 * A flexible and dynamic process model that be deployed on anything from
83 * A flexible and dynamic process model that be deployed on anything from
84 multicore workstations to supercomputers.
84 multicore workstations to supercomputers.
85
85
86 * An architecture that supports many different styles of parallelism, from
86 * An architecture that supports many different styles of parallelism, from
87 message passing to task farming.
87 message passing to task farming.
88
88
89 * Both blocking and fully asynchronous interfaces.
89 * Both blocking and fully asynchronous interfaces.
90
90
91 * High level APIs that enable many things to be parallelized in a few lines
91 * High level APIs that enable many things to be parallelized in a few lines
92 of code.
92 of code.
93
93
94 * Share live parallel jobs with other users securely.
94 * Share live parallel jobs with other users securely.
95
95
96 * Dynamically load balanced task farming system.
96 * Dynamically load balanced task farming system.
97
97
98 * Robust error handling in parallel code.
98 * Robust error handling in parallel code.
99
99
100 The latest development version is always available from IPython's `GitHub
100 The latest development version is always available from IPython's `GitHub
101 site <http://github.com/ipython>`_.
101 site <http://github.com/ipython>`_.
102 """
102 """
103
103
104 license = 'BSD'
104 license = 'BSD'
105
105
106 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
106 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
107 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
107 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
108 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
108 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
109 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
109 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
110 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
110 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
111 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com')
111 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com')
112 }
112 }
113
113
114 author = 'The IPython Development Team'
114 author = 'The IPython Development Team'
115
115
116 author_email = 'ipython-dev@scipy.org'
116 author_email = 'ipython-dev@scipy.org'
117
117
118 url = 'http://ipython.org'
118 url = 'http://ipython.org'
119
119
120 # This will only be valid for actual releases sent to PyPI, but that's OK since
120 # This will only be valid for actual releases sent to PyPI, but that's OK since
121 # those are the ones we want pip/easy_install to be able to find.
121 # those are the ones we want pip/easy_install to be able to find.
122 download_url = 'http://archive.ipython.org/release/%s' % version
122 download_url = 'http://archive.ipython.org/release/%s' % version
123
123
124 platforms = ['Linux','Mac OSX','Windows XP/2000/NT']
124 platforms = ['Linux','Mac OSX','Windows XP/2000/NT']
125
125
126 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed']
126 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed']
127
127
128 classifiers = [
128 classifiers = [
129 'Intended Audience :: Developers',
129 'Intended Audience :: Developers',
130 'Intended Audience :: Science/Research'
130 'Intended Audience :: Science/Research',
131 'License :: OSI Approved :: BSD License',
131 'License :: OSI Approved :: BSD License',
132 'Programming Language :: Python',
132 'Programming Language :: Python',
133 'Programming Language :: Python :: 2',
133 'Programming Language :: Python :: 2',
134 'Programming Language :: Python :: 2.6',
134 'Programming Language :: Python :: 2.6',
135 'Programming Language :: Python :: 2.7',
135 'Programming Language :: Python :: 2.7',
136 'Programming Language :: Python :: 3',
136 'Programming Language :: Python :: 3',
137 'Programming Language :: Python :: 3.1',
137 'Programming Language :: Python :: 3.1',
138 'Programming Language :: Python :: 3.2',
138 'Programming Language :: Python :: 3.2',
139 'Topic :: System :: Distributed Computing',
139 'Topic :: System :: Distributed Computing',
140 'Topic :: System :: Shells'
140 'Topic :: System :: Shells'
141 ]
141 ]
General Comments 0
You need to be logged in to leave comments. Login now